Unfreeze Card
POST/api/cards/:cardId/unfreeze
Restore processing new payment requests on a previously frozen card.
Request
Path Parameters
cardId stringrequired
ID of card
- application/json
Body
message string
Additional context to the cause surrounding the card unfreeze.
Responses
- 202
- 400
- 403
Successful operation
Request fields are invalid
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
statusCode integerrequired
statusName stringrequired
errorCode stringrequired
errors
object[]
message string
path string
The location of the invalid path param, query param or payload attribute.
{
"statusCode": 400,
"statusName": "Bad Request",
"errorCode": "INVALID_REQUEST_INPUT",
"errors": [
{
"message": "Invalid type",
"path": "items[1].attributes.invalidField"
}
]
}
CARD_NOT_FROZEN Card is not frozen.
CARD_UNFREEZE_NOT_ALLOWED Card unfreeze is not allowed.
- application/json
- Schema
- Example (from schema)
Schema
statusCode integerrequired
statusName stringrequired
errorCode stringrequired
reason string
{
"statusCode": 403,
"statusName": "Forbidden",
"errorCode": "FORBIDDEN",
"reason": "Unauthorized"
}
Loading...