Update a card
Update a card's details
Updates the details of a given card.
put/cards/{cardId}
Path parameters
cardIdstring uuid required
The ID of the card to work with.
Example:e9293471-5eb3-4dbc-916c-dbaf9e2deefd
Query parameters
accountIdstring required
The ID of the account to work with.
Example:F50091
personIdstring uuid
The ID of the person to work with.
Example:775596ae-2624-40af-a9dc-9756110a4a04
Request body
Example request
{
"cardId": "e9293471-5eb3-4dbc-916c-dbaf9e2deefd",
"personId": "775596ae-2624-40af-a9dc-9756110a4a04",
"budgetCardPhoneNumberPersonId": "775596ae-2624-40af-a9dc-9756110a4a04",
"budgetCardPhoneNumber": "+447911001762",
"name": "Team Party",
"state": "ACTIVE"
}Response
OK
Example response
{
"id": "e9293471-5eb3-4dbc-916c-dbaf9e2deefd",
"personId": "775596ae-2624-40af-a9dc-9756110a4a04",
"accountId": "F50091",
"lastFour": "0056",
"expiration": "0111",
"expirationTime": "2025-01-31T23:59:59Z",
"state": "ACTIVE",
"stateReason": "New card",
"fulfillmentStatus": "ISSUED",
"fulfillment": {
"shippingMethod": "COURIER"
},
"cardType": "PHYSICAL_MSR",
"recipientAddress": {
"firstName": "Jane",
"middleName": "Roger",
"lastName": "Doe",
"address1": "123 Henry St",
"address2": "Suite 101",
"city": "Porterville",
"state": "CA",
"postalCode": "93257",
"country": "US",
"phone": "831555555"
},
"name": "Team Party Card"
}