Payees (previously "beneficiaries"). Create one or more payees for the logged-in corporate or consumer identity.
Security
auth_token and api-key
- Weavr Sandbox Environmenthttps://sandbox.weavr.io/multi/beneficiaries
- Mock serverhttps://api.weavr.io/_mock/products/multi/openapi/beneficiaries
curl -i -X POST \
https://sandbox.weavr.io/multi/beneficiaries \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-H 'api-key: YOUR_API_KEY_HERE' \
-H 'idempotency-ref: string' \
-d '{
"tag": "string",
"beneficiaries": [
{
"trustLevel": "TRUSTED",
"externalRefs": [
"string"
],
"group": "string",
"beneficiaryInformation": {
"businessName": "string"
},
"beneficiaryDetails": {
"instrument": {
"id": "string",
"type": "managed_cards"
}
}
}
]
}'Response
{ "operationBatchId": { "batchId": "string", "operation": "CREATE" }, "tag": "string", "state": "INITIALISED" }