Skip to main content
POST
/
transfers
/
senders
Create a transfer sender
curl --request POST \
  --url https://developersandbox-api.flutterwave.com/transfers/senders \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": {
    "first": "King",
    "last": "LeBron",
    "middle": "Leo"
  },
  "email": "cornelius@gmail.com",
  "address": {
    "city": "New York",
    "country": "US",
    "line1": "123 Main Street",
    "postal_code": "10001",
    "state": "New York",
    "line2": "Apt 4B"
  },
  "phone": {
    "country_code": "234",
    "number": "08012345678"
  }
}
'
{
  "status": "success",
  "message": "<string>",
  "data": {
    "id": "<string>",
    "name": {
      "first": "King",
      "middle": "Leo",
      "last": "LeBron"
    },
    "national_identification": {
      "type": "PASSPORT",
      "identifier": "FLY5869798686",
      "expiration_date": "2029-07-08"
    },
    "phone": {
      "country_code": "234",
      "number": "08012345678"
    },
    "date_of_birth": "<string>",
    "email": "cornelius@gmail.com",
    "address": {
      "city": "New York",
      "country": "US",
      "line1": "123 Main Street",
      "postal_code": "10001",
      "state": "New York",
      "line2": "Apt 4B"
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

X-Trace-Id
string

A unique identifier to track this operation. It must be between 12 and 255 characters in length.

Required string length: 12 - 255
X-Idempotency-Key
string

A unique identifier to prevent duplicate requests. It must be between 12 and 255 characters in length.

Required string length: 12 - 255

Body

application/json

Sender information for GBP bank transfers.

name
object
required

The Sender's name.

email
string
required

The Sender's email address

Pattern: ^[a-zA-Z0-9_+&*-]+(?:\.[a-zA-Z0-9_+&*-]+)*@(?:[a-zA-Z0-9-]+\.)+[a-zA-Z]{2,}$
Example:

"cornelius@gmail.com"

address
object
required

The Sender's residential address

phone
object
required

The Sender's phone number

Example:
{
"country_code": "234",
"number": "08012345678"
}

Response

OK

status
enum<string>
Available options:
success,
failed
message
string
data
object