Manage a list of trusted payees for Outgoing wire transfers and Sends.
Aside from convenience and a reduced chance of making errors when making transactions, this allows for the introduction an SCA exemption, where the account holder can request that transactions to TRUSTED payees to be exempted from the requirement to pass an SCA challenge every time.
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" }