Skip to content

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

Confirm Disbursement

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

Confirms a completed disbursement, releasing the funds to the recipients and making the vouchers spendable. This is the final step in the process. This endpoint can also be used to schedule the confirmation for a future date and time.

FieldTypeRequirementDescription
UIDxIntegerRequiredThe unique internal identifier for this disbursement.
ShouldNotifyBooleanRequiredIf true, recipients will be notified upon confirmation.
ScheduledTimeStringOptionalIf provided, schedules the release of funds at the specified GMT+2 time (YYYY/MM/DD HH:MM). "" (empty string) reverts the status back to Awaiting Confirmation. null will release funds immediately.
MetadataStringOptionalAny other detail to store on this transaction.
{
"UIDx": 637,
"ScheduledTime": null,
"ShouldNotify": true,
"Metadata": "{\"ActorUserIDs\": \"547828938941114\"}"
}
Terminal window
curl -X POST '{api-url}/confirm?ns={community}' \
-H 'Authorization: bearer YOUR_TOKEN' \
-H 'Content-Type: application/json' \
-d '{"UIDx":637,"ScheduledTime":null,"ShouldNotify":true,"Metadata":"{\"ActorUserIDs\": \"547828938941114\"}"}'