curl --request DELETE \
--url https://developersandbox-api.flutterwave.com/transfers/senders/{id} \
--header 'Authorization: Bearer <token>'{
"status": "failed",
"error": {
"type": "REQUEST_NOT_VALID",
"code": "10400",
"message": "Request is not valid",
"validation_errors": [
{
"field_name": "amount",
"message": "must not be null"
}
]
}
}Delete a transfer sender
curl --request DELETE \
--url https://developersandbox-api.flutterwave.com/transfers/senders/{id} \
--header 'Authorization: Bearer <token>'{
"status": "failed",
"error": {
"type": "REQUEST_NOT_VALID",
"code": "10400",
"message": "Request is not valid",
"validation_errors": [
{
"field_name": "amount",
"message": "must not be null"
}
]
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
A unique identifier to track this operation. It must be between 12 and 255 characters in length.
12 - 255ID of the transfer sender
No Content
Was this page helpful?