v45

latestOpenAPI 3.0.0raw.githubusercontent.com2026-07-2684278289.5 KB
Send Money

List send money approval requests

Retrieve a paginated list of send money approval requests for the authenticated organization. Supports filtering by account and status.

get/request-send-money

Query parameters

accountIdstring uuid

ID for a Mercury account.

status'pendingApproval' | 'approved' | 'rejected' | 'cancelled'
start_afterstring uuid

The ID of the send money approval request to start the page after (exclusive). When provided, results will begin with the send money approval request immediately following this ID. Use this for standard forward pagination to get the next page of results. Cannot be combined with end_before.

end_beforestring uuid

The ID of the send money approval request to end the page before (exclusive). When provided, results will end just before this ID and work backwards. Use this for reverse pagination or to retrieve previous pages. Cannot be combined with start_after.

limitinteger

Maximum number of results to return. Allowed range: 1 to 1000. Defaults to 1000

Response

Example response

{
  "requests": [
    {
      "createdAt": "2016-07-22T00:00:00Z",
      "reviews": [
        {
          "reviewedAt": "2016-07-22T00:00:00Z"
        }
      ],
      "scheduledSendDate": "2016-07-22"
    }
  ]
}