Request
Send your HTTP requests with an Authorization
header that contains the word Basic followed by a space and a base64-encoded string username:password
Example:Authorization: Basic *****************
Body Params application/json
{
"beneficiary_id": "string"
}
Request samples
curl --location --request DELETE 'https://apitest.wooshpay.com/v1/beneficiaries/' \
--header 'Accept;' \
--header 'Content-Type: application/json' \
--header 'Authorization: Basic Og==' \
--data-raw '{
"beneficiary_id": "string"
}'
Responses
application/json {
"beneficiary_id": "string",
"object": "string",
"deleted": true
}
Modified at 2023-08-31 07:26:55