Skip to content

Search is only available in production builds. Try building and previewing the site to test it out locally.

Notify Users

POST {api-url}/notifyUsers?ns={community}

Triggers notifications to be sent to recipients of a released disbursement, either for the entire batch or for a specific subset of transactions.

FieldTypeRequirementDescription
UIDxIntegerRequiredThe unique internal identifier for this disbursement.
TIDsArrayOptionalAn array of specific TIDs (as strings) to notify. If omitted, all recipients will be notified.
MetadataStringOptionalAny other detail that the merchant wishes to store on this transaction.
{
"UIDx": 637,
"TIDs": [],
"Metadata": "{\"ActorUserIDs\": \"547828938941114\"}"
}
Terminal window
curl -X POST '{api-url}/notifyUsers?ns={community}' \
-H 'Authorization: bearer YOUR_TOKEN' \
-H 'Content-Type: application/json' \
-d '{"UIDx":637,"TIDs":[],"Metadata":"{\"ActorUserIDs\": \"547828938941114\"}"}'