Skip to main content
This guide walks you through authenticating, listing workflows, and creating your first request via the API.

Prerequisites

  • A SimpleDocs account with API credentials (client_id and client_secret)
  • At least one published workflow in your company
  • curl (or any HTTP client)

1. Get an access token

Save the access_token from the response — you’ll use it in every subsequent call.

2. List your workflows

Fetch the available workflows to find the one you want to create a request for:
Note the workflow id — you’ll need it in the next steps.

3. Get the workflow schema

Before creating a request, check which fields and variables the workflow requires:

4. Create a request

Now submit a request using the required fields and variables from the schema:

5. Check the request status

Poll the request to track its progress:
Or view the activity log:

Next steps