Workflows
Create a workflow
PUT

/transform/v1/workflows/{id}

Bearer*
curl --request PUT \
  --url https://api.invopop.com/transform/v1/workflows/{id} \
  --header 'Authorization: Bearer <token>'
{
  "created_at": "string",
  "description": "string",
  "disabled": "boolean",
  "id": "186522a6-e697-4e34-8498-eee961bcb845",
  "integration_ids": [
    "string"
  ],
  "name": "string",
  "updated_at": "string"
}

Path Parameters

idrequired
string

The UUID (any version) of the workflow to create.

Query Parameters

name
string

Name of the workflow.

description
string

Description of the workflow.

integration_ids
array

Array of integration IDs to use for this workflow.

Body

description
string

Description of the workflow.

integration_ids
string[]

Array of integration IDs to use for this workflow.

name
string

Name of the workflow.

Response

created_at
string

When the workflow was created.

description
string

Description of the workflow

disabled
boolean

When true, this workflow can no longer be used.

id
string

The UUID (any version) of the workflow.

integration_ids
string[]

List of integration IDs to use.

name
string

Name of the workflow

updated_at
string

When the workflow was last updated.