Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/json
{
"card_id": "{{card_id}}",
"account_id": "{{account_id}}"
}
Request Code Samples
curl --location --request POST '/cards/associations/v1/' \
--header 'Content-type: application/json;' \
--data-raw '{
"card_id": "{{card_id}}",
"account_id": "{{account_id}}"
}'
Responses
application/json {
"data": {
"card_id": "crd-2q96lwO3kbMLKGRNLSCfXYxCyPk",
"account_id": "acc-2qNcCxejxLSoLvnVy3E8RkR0R6c",
"associated": true,
"created_at": "2024-12-18T17:14:09.073550515Z"
}
}
Modified at 2025-03-16 05:50:40