Skip to content

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

Initiate & Upload

POST {api-url}/disburse/initiate?ns={community}

Use this call to start a new disbursement process. This call returns a unique ID for the disbursement and a secure, temporary URL where you must upload your disbursement CSV file using an HTTP PUT request.

The request body for this endpoint is empty.

{}
Terminal window
curl -X POST '{api-url}/disburse/initiate?ns={community}' \
-H 'Authorization: bearer YOUR_TOKEN' \
-H 'Content-Type: application/json' \
-d '{}'