RapidfolioRapidfolio
API Reference

Procedures API

List your procedures via the Dashboard API.

List procedures

Returns all procedures in your workspace.

GET https://app.rapid.io/api/v1/procedures
Authorization: Bearer <api_key>

Response

{
  "data": [
    {
      "id": "proc_abc123",
      "name": "Onboard Customer",
      "createdAt": "2026-01-01T00:00:00.000Z"
    },
    {
      "id": "proc_def456",
      "name": "Process Wire Transfer",
      "createdAt": "2026-01-15T09:00:00.000Z"
    }
  ]
}

Use the id field when calling the Runner API to start a run.


Running a procedure

To trigger a procedure run, use the Runner API:

POST https://run.rapidfolio.com/v1/procedures/:procedureId/:environment
Authorization: Bearer <api_key>
Content-Type: application/json

→ See Run a Procedure for the full request body, response formats, and async vs. sync execution options.

On this page