v1
latestOpenAPI 3.1.02026-07-2656258207.2 KBTransfer Senders
Create a transfer sender
Create a transfer sender
post/transfers/senders
Headers
X-Trace-Idstring
A unique identifier to track this operation. It must be between 12 and 255 characters in length.
X-Idempotency-Keystring
A unique identifier to prevent duplicate requests. It must be between 12 and 255 characters in length.
Request body
Example request
{
"name": {
"first": "King",
"middle": "Leo",
"last": "LeBron"
},
"national_identification": {
"identifier": "FLY5869798686",
"expiration_date": "2029-07-08"
},
"date_of_birth": "2000-07-08",
"phone": {
"country_code": "234",
"number": "08012345678"
},
"email": "cornelius@gmail.com",
"address": {
"city": "New York",
"country": "US",
"line1": "123 Main Street",
"line2": "Apt 4B",
"postal_code": "10001",
"state": "New York"
}
}Response
OK
Example response
{
"data": {
"name": {
"first": "King",
"middle": "Leo",
"last": "LeBron"
},
"national_identification": {
"identifier": "FLY5869798686",
"expiration_date": "2029-07-08"
},
"phone": {
"country_code": "234",
"number": "08012345678"
},
"email": "cornelius@gmail.com",
"address": {
"city": "New York",
"country": "US",
"line1": "123 Main Street",
"line2": "Apt 4B",
"postal_code": "10001",
"state": "New York"
}
}
}