Skip to main content
PUT
/
transfers
/
{id}
Update a transfer
curl --request PUT \
  --url https://developersandbox-api.flutterwave.com/transfers/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "initiate": "true",
  "close": "false",
  "disburse_option": {
    "date_time": "<string>",
    "timezone": "Africa/Cairo"
  }
}
'
{
  "status": "success",
  "message": "<string>",
  "data": {
    "id": "trf_yuK89vb",
    "action": "instant",
    "status": "CANCELLED",
    "disburse_option": {
      "date_time": "<string>",
      "timezone": "Africa/Cairo"
    },
    "updated_datetime": "2023-11-07T05:31:56Z"
  }
}

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

Path Parameters

id
string
required

ID of the transfer

Body

application/json
initiate
boolean

Used to initiate a deferred or scheduled transfer

Example:

"true"

close
boolean

Used to close a deferred or scheduled transfer.

Example:

"false"

disburse_option
object

To specify the date and time for disbursement, this is required when action is set to scheduled.

Response

OK

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