Expire Authorization Hold
DELETE/authorization-holds/:id
(In Development)
Authorization holds API allows balance blocking for transfer operations.
This allows for ensuring balance is available when a transfer is ordered and avoids balance not enough
failures.
Cancel an authorisation hold.
Request
Path Parameters
id stringrequired
Authorization hold id.
Responses
- 200
- 404
OK
- application/json
- Schema
- Example (from schema)
- AUTH_HOLD
Schema
id string
Authorization hold id.
customerId stringrequired
Customer Id.
accountId string
Customer account id.
amount int64required
Amount to block.
currencyCode Currency (string)required
Possible values: >= 3 characters
and <= 3 characters
Currency alphabetic code as specified by ISO 4217
createdOn date-time
Represents RFC 3339, section 5.6 date-time.
expiresOn date-time
Represents RFC 3339, section 5.6 date-time.
status string
Possible values: [ACTIVE
, EXPIRED
, USED
, RELEASED
]
Status of the authorization hold.
{
"id": "string",
"customerId": "5435323362",
"accountId": "string",
"amount": 0,
"currencyCode": "EUR",
"createdOn": "2021-07-15T17:54:12Z",
"expiresOn": "2021-07-15T17:54:12Z",
"status": "ACTIVE"
}
{
"id": "3423566434",
"customerId": "5435323362",
"accountId": "5014567344",
"amount": 50,
"currencyCode": "GBP",
"createdOn": "2021-07-15T17:54:12Z",
"expiresOn": "2100-01-01T00:00:00Z",
"lastChangeDate": "2021-07-15T17:54:12Z",
"status": "RELEASED"
}
Not Found
Loading...