Manage authentication for your users.
- Get all beneficiary batches
Weavr Multi Product API (3.63.5)
Weavr Multi API provides a simple and flexible way to issue cards and accounts to your customers.
By integrating Weavr Multi API in your application you can embed banking capabilities within your app and provide a seamless experience for your customers.
Authentication
Each request to the Multi API must include an api-key that represents your account. You can obtain an API Key by registering for a Multi account here.
Almost all endpoints require a secondary authentication token auth_token that represents the user for whom the request is being executed.
- Mock serverhttps://api.weavr.io/_mock/products/multi/openapi/beneficiaries/{id}
- Weavr Sandbox Environmenthttps://sandbox.weavr.io/multi/beneficiaries/{id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.weavr.io/_mock/products/multi/openapi/beneficiaries/{id}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'api-key: YOUR_API_KEY_HERE'Success
The value that determines whether a Beneficiary is trusted or not.
A custom field that can be used to categorise a beneficiary for easier searching and filtering.
The object representing the beneficiary details.
The object representing the beneficiary details.
The business beneficiary name. The allowed length and pattern is dependent on the beneficiary details type:
InstrumentDetailsBeneficiary or BankAccountDetailsBeneficiary with IBANDetails: >= 1 character and <= 150 characters
BankAccountDetailsBeneficiary with FasterPaymentsBankDetailsOrBACSBankDetails: >= 1 character and <= 140 characters with a pattern of ^[a-zA-Z0-9\/\-?:().,’+\s#=!"%&*<>;\{@\r\n]*$ (please note that the ’ symbol is the unicode value U+2019 (right single quotation mark) and not the unicode value U+0027 (apostrophe))
The object representing the beneficiary instrument details.
Represents a Weavr beneficiary instrument typically used in Send transactions.
The object representing the list of batch IDs and the operations that occurred for each batch.
{ "trustLevel": "TRUSTED", "externalRefs": [ "string" ], "group": "string", "beneficiaryInformation": { "businessName": "string" }, "beneficiaryDetails": { "instrument": { … } }, "id": "string", "relatedOperationBatches": [ { … } ], "state": "INITIALISED", "validationFailure": "INSTRUMENT_DETAILS_NOT_FOUND" }
Request
Retrieves all beneficiary batches matching the query parameters and that belong to the logged-in identity.
The offset value for paging, indicating the initial item number to be returned from the data set satisfying the given criteria. Leave out to fetch the first page of results.
The limit of the results for paging, starting at the offset. Limit is always capped at 100.
- Mock serverhttps://api.weavr.io/_mock/products/multi/openapi/beneficiaries/batch
- Weavr Sandbox Environmenthttps://sandbox.weavr.io/multi/beneficiaries/batch
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.weavr.io/_mock/products/multi/openapi/beneficiaries/batch?offset=0&limit=1&state=INITIALISED&operation=CREATE&tag=string' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'api-key: YOUR_API_KEY_HERE'{ "batches": [ { … } ], "count": 0, "responseCount": 0 }
- Mock serverhttps://api.weavr.io/_mock/products/multi/openapi/beneficiaries/batch/{id}
- Weavr Sandbox Environmenthttps://sandbox.weavr.io/multi/beneficiaries/batch/{id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.weavr.io/_mock/products/multi/openapi/beneficiaries/batch/{id}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'api-key: YOUR_API_KEY_HERE'{ "operationBatchId": { "batchId": "string", "operation": "CREATE" }, "tag": "string", "state": "INITIALISED" }
Managed Accounts are a type of financial instrument offered by Weavr.
They hold funds for their owner, and can be upgraded to IBANs so as to receive and send funds to instruments outside of the Weavr Platform, via Wire Transfers.
Managed accounts can also be used as source and destination instruments in the transfer and send transactions.
Managed Cards are a type of financial instrument offered by Weavr.
You can create virtual or physical cards that are issued to the consumer or corporate identity.
A card created in prepaid mode has its own balance, whereas a card created in debit mode does not have its own balance but taps into the balance of its parent managed account.
Linked Accounts are external bank accounts that users connect to their profiles within the Weavr Platform.
These accounts allow users to link their existing bank accounts, held at external financial institutions, to the Weavr Platform, enabling secure and efficient transfer of funds between their own accounts.
Linked Accounts are designed to streamline the process of moving money between a user’s various bank accounts, providing a convenient and integrated way to manage personal finances across different financial institutions.