Internal Domestic Transfer
Allows you to transfer money between accounts in the same country while maintaining the currency of origin.
post
{{api_environment_url}}/api/internal-transfer
Domestic Transfer
Request
Status Ok
Bad Request
curl --location \
--request POST '{{api_environment_url}}/api/internal-transfer' \
--header 'Authorization: Bearer {{token}}' \
--header 'Content-Type: application/json' \
--data {
"externalId": "111222",
"country": "ARG",
"currency": "ARS",
"amount": 100,
"transactionType": "InternalDomesticTransfer",
"client": {
"type": "Client",
"from": {
"accountNumber": "032.032.00000078"
},
"to": {
"accountNumber": "032.032.00000079"
}
}
}'
{
"transactionType": "InternalDomesticTransfer",
"externalId": "111222",
"internalId": "fc2c831c-d0f1-41f6-8a59-0ecd426c087d",
"country": "ARG",
"currency": "ARS",
"clientCode": "0001",
"creationDate": "2023-03-23T00:27:49.509+00:00",
"errors": [],
"status": {
"code": "200",
"description": "COMPLETED",
"detail": "INTERNAL TRANSFER"
},
"amount": 100,
"client": {
"type": "Client",
"from": {
"accountNumber": "032.032.00000078"
},
"to": {
"accountNumber": "032.032.00000079",
"amount": 95.8
}
},
"fees": {
"description": "Fee",
"currency": "ARS",
"amount": 3,
"account": "032.032.00000078"
},
"localTaxes": [
{
"code": "0001",
"percentage": 1.2,
"description": "IDC",
"currency": "ARS",
"amount": 1.2,
"account": "032.032.00000078"
}
],
"withHoldings": []
}
{
"externalId": "111222",
"internalId": "fc2c831c-d0f1-41f6-8a59-0ecd426c087d5",
"errors": [
{
"code": "702",
"detail": "This account doesn't have a InternalDomesticTransfer configuration for this"
},
{
"code": "703",
"detail": "Accounts countries must be match"
}
],
"status": {
"code": "702",
"description": "REJECTED",
"detail": "This account doesn't have a InternalDomesticTransfer configuration for this"
}
}
Last modified 3mo ago