- Update a managed account
Update the details for the managed account identified by the id in the path.
The tag field is a custom field that can be used to search and filter.
Updates the friendly name of the managed account. Leave blank if no change is needed.
Sends a low balance notification webhook when the available balance drops below this amount. Currency is inherited from the managed account.
- Weavr Sandbox Environmenthttps://sandbox.weavr.io/multi/managed_accounts/{id}
- Mock serverhttps://api.weavr.io/_mock/products/multi/openapi/managed_accounts/{id}
curl -i -X PATCH \
'https://sandbox.weavr.io/multi/managed_accounts/{id}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-H 'api-key: YOUR_API_KEY_HERE' \
-d '{
"tag": "string",
"friendlyName": "string",
"lowBalanceThreshold": 0,
"clearLowBalanceThreshold": true
}'Success
The profile Id which a specific identity, instrument or transaction type is linked to.
Profiles contain configuration and determine behavioral aspects of the newly created transaction, for example, fees that may apply.
You can have one or more profiles linked to your application, and these can be used to drive different behaviors according to your product's needs.
Profile Ids can be found in the Multi Portal, in the API Credentials page.
The tag field is a custom field that can be used to search and filter.
The currency expressed in ISO-4217 code. Example: GBP, EUR, USD.
Instruments with funds have 2 balances, the availableBalance indicating the funds that are available for transactions such as purchases, and the actualBalance indicating the funds that are actually on the instrument.
The time when the managed account was created, expressed in Epoch timestamp using millisecond precision.
{ "id": "string", "profileId": "string", "tag": "string", "friendlyName": "string", "currency": "str", "balances": { "availableBalance": 0, "actualBalance": 0 }, "state": { "state": "ACTIVE", "blockedReason": "USER", "destroyedReason": "SYSTEM" }, "creationTimestamp": 0, "lowBalanceThreshold": 0 }