Account Co-ordinates and Attributes APIs
Replace account attributes
Response to /api/v2.0/account/{idRef}/attributes
No content
PUT /api/v2.0/account/{idRef}/attributes HTTP/1.1
Content-Type: application/json
Accept: */*
Content-Length: 34
{
"ANY_ADDITIONAL_PROPERTY": "text"
}Response to /api/v2.0/account/{idRef}/attributes
No content
Delete account attributes
Response to /api/v2.0/account/{idRef}/attributes
No content
DELETE /api/v2.0/account/{idRef}/attributes HTTP/1.1
Content-Type: application/json
Accept: */*
Content-Length: 8
[
"text"
]Response to /api/v2.0/account/{idRef}/attributes
No content
Add account attributes
Response to /api/v2.0/account/{idRef}/attributes
No content
PATCH /api/v2.0/account/{idRef}/attributes HTTP/1.1
Content-Type: application/json
Accept: */*
Content-Length: 34
{
"ANY_ADDITIONAL_PROPERTY": "text"
}Response to /api/v2.0/account/{idRef}/attributes
No content
Add banking coordinates to account
A standard way of transmitting account coordinates between services.
Response to /api/v2.0/account/{idRef}/coordinates
A globally unique identifier for the account, generated on creation.
Strictly optional application-scoped tags for the account coordinates.
POST /api/v2.0/account/{idRef}/coordinates HTTP/1.1
Content-Type: application/json
Accept: */*
Content-Length: 751
{
"acceptor": {
"acquirer_id": "text",
"facilitator_id": "text",
"id": "text",
"mcc": "text",
"terminal_id": "text"
},
"banking": {
"account_code": "text",
"account_number": "text",
"account_type": "text",
"balance_account_number": "text",
"bank_code": "text",
"bic": "text",
"bic_bank_code": "text",
"bic_branch_code": "text",
"bic_location_code": "text",
"branch_code": "text",
"country_code": "text",
"currency": "text",
"iban": "text",
"national_id": "text",
"owner_account_number": "text",
"routing_code": "text"
},
"external": {
"ANY_ADDITIONAL_PROPERTY": "text"
},
"internal": {
"account_id": "123e4567-e89b-12d3-a456-426614174000",
"account_reference": "text",
"card_id": "123e4567-e89b-12d3-a456-426614174000",
"contact_account_id": "text",
"currency_code": "text",
"legacy_account_id": 1
},
"reference": "text"
}Response to /api/v2.0/account/{idRef}/coordinates
{
"coordinates": {
"acceptor": {
"acquirer_id": "text",
"facilitator_id": "text",
"id": "text",
"mcc": "text",
"terminal_id": "text"
},
"banking": {
"account_code": "text",
"account_number": "text",
"account_type": "text",
"balance_account_number": "text",
"bank_code": "text",
"bic": "text",
"bic_bank_code": "text",
"bic_branch_code": "text",
"bic_location_code": "text",
"branch_code": "text",
"country_code": "text",
"currency": "text",
"iban": "text",
"national_id": "text",
"owner_account_number": "text",
"routing_code": "text"
},
"external": {
"ANY_ADDITIONAL_PROPERTY": "text"
},
"internal": {
"account_id": "123e4567-e89b-12d3-a456-426614174000",
"account_reference": "text",
"card_id": "123e4567-e89b-12d3-a456-426614174000",
"contact_account_id": "text",
"currency_code": "text",
"legacy_account_id": 1
},
"reference": "text"
},
"external": {
"ANY_ADDITIONAL_PROPERTY": "text"
},
"id": "123e4567-e89b-12d3-a456-426614174000",
"tags": [
"text"
]
}Replace banking coordinates tags
Response to /api/v2.0/account/{idRef}/coordinates/{id}
No content
PUT /api/v2.0/account/{idRef}/coordinates/{id}?tags=text HTTP/1.1
Content-Type: application/json
Accept: */*
Content-Length: 6
"text"Response to /api/v2.0/account/{idRef}/coordinates/{id}
No content
Delete banking coordinates
Response to /api/v2.0/account/{idRef}/coordinates/{id}
No content
DELETE /api/v2.0/account/{idRef}/coordinates/{id} HTTP/1.1
Accept: */*
Response to /api/v2.0/account/{idRef}/coordinates/{id}
No content
Add banking coordinates tags
Response to /api/v2.0/account/{idRef}/coordinates/{id}
No content
PATCH /api/v2.0/account/{idRef}/coordinates/{id}?tags=text HTTP/1.1
Content-Type: application/json
Accept: */*
Content-Length: 6
"text"Response to /api/v2.0/account/{idRef}/coordinates/{id}
No content
Last updated

