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
{
"created": {
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string"
},
"ending_before": "string",
"limit": 0,
"starting_after": "string",
"nickname": "string"
}
Request samples
curl --location --request GET 'https://apitest.wooshpay.comv1/beneficiaries/list' \
--header 'Accept;' \
--header 'Content-Type: application/json' \
--header 'Authorization: Basic Og==' \
--data-raw '{
"created": {
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string"
},
"ending_before": "string",
"limit": 0,
"starting_after": "string",
"nickname": "string"
}'
Responses
application/json enabled_events
array[string]
optional{
"object": "\"list\"",
"url": "string",
"has_more": true,
"data": [
{
"id": "string",
"object": "string",
"api_version": null,
"application": null,
"created": 0,
"description": "string",
"enabled_events": [
"string"
],
"livemode": true,
"metadata": {},
"status": "string",
"url": "string"
}
]
}
Modified at 2024-03-22 09:41:14