Skip to content

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

Progress

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

Retrieves the real-time progress of an ongoing asynchronous disbursement.

FieldTypeRequirementDescription
DisbursementIDStringRequiredThe unique ID returned from the /disburse/initiate call.
MetadataStringOptionalAny other detail that the merchant wishes to store on this transaction.
{
"DisbursementID": "7bcddfd9-5b87-4d61-adb7-16f2c0cb32c1",
"Metadata": "{\"ActorUserIDs\": \"547828938941114\"}"
}
Terminal window
curl -X POST '{api-url}/progress?ns={community}' \
-H 'Authorization: bearer YOUR_TOKEN' \
-H 'Content-Type: application/json' \
-d '{"DisbursementID":"7bcddfd9-5b87-4d61-adb7-16f2c0cb32c1","Metadata":"{\"ActorUserIDs\": \"547828938941114\"}"}'