GET
/
transform
/
v1
/
workflows
curl --request GET \
  --url https://api.invopop.com/transform/v1/workflows
{
  "created_at": "<string>",
  "limit": 123,
  "list": [
    {
      "country": "<string>",
      "created_at": "<string>",
      "description": "<string>",
      "disabled": true,
      "draft": true,
      "hash": "<string>",
      "id": "186522a6-e697-4e34-8498-eee961bcb845",
      "name": "<string>",
      "rescue": [
        {
          "action": "email.send",
          "config": {},
          "id": "186522a6-e697-4e34-8498-eee961bcb845",
          "name": "<string>",
          "next": [
            {
              "code": "<string>",
              "status": "OK",
              "step_id": "186522a6-e697-4e34-8498-eee961bcb845",
              "steps": [
                {}
              ],
              "stop": true
            }
          ],
          "notes": "<string>",
          "summary": "<string>"
        }
      ],
      "schema": "<string>",
      "steps": [
        {
          "action": "email.send",
          "config": {},
          "id": "186522a6-e697-4e34-8498-eee961bcb845",
          "name": "<string>",
          "next": [
            {
              "code": "<string>",
              "status": "OK",
              "step_id": "186522a6-e697-4e34-8498-eee961bcb845",
              "steps": [
                {}
              ],
              "stop": true
            }
          ],
          "notes": "<string>",
          "summary": "<string>"
        }
      ],
      "updated_at": "<string>",
      "version": "<string>"
    }
  ],
  "next_created_at": "<string>",
  "schema": "bill/invoice"
}

Query Parameters

limit
integer

Maximum number of workflows to return.

Example:

100

created_at
string

Date from which results are provided.

Example:

"2023-08-02T00:00:00.000Z"

schema
string

Short schema name that the workflow will be allowed to process.

Example:

"bill/invoice"

Response

200 - application/json
OK
created_at
string

First or queried timestamp when the first entry in the page was created.

limit
integer

Maximum number of objects returned in a page.

list
object[] | null

List of workflows.

next_created_at
string

Timestamp that indicates the start of the next page of results, if any.

schema
string

Short schema name that the workflows have been filtered by.

Example:

"bill/invoice"