Skip to main content
POST
/
v1
/
banking
/
accounts
/
{account_id}
/
transfers
/
{transfer_id}
/
cancel
Cancel Entity Transfer (Banking Connectivity)
curl --request POST \
  --url https://api-sandbox.y.uno/v1/banking/accounts/{account_id}/transfers/{transfer_id}/cancel \
  --header 'private-secret-key: <api-key>' \
  --header 'public-api-key: <api-key>'
{
  "code": "VALIDATION_ERROR",
  "messages": [
    "Only transfers in PENDING status can be cancelled"
  ],
  "http_code": 400
}
Cancel a pending transfer. Only transfers in PENDING status can be cancelled. Transfers that have moved to PROCESSING or later statuses cannot be cancelled.

Authorizations

public-api-key
string
header
required
private-secret-key
string
header
required

Path Parameters

account_id
string
required

The unique identifier of the account. Found on the Yuno dashboard (UUID, 36 chars).

transfer_id
string
required

The id of the transfer obtained from Initiate Entity Transfer (UUID, 36 chars).

Response