Workflows
Update a workflow
Workflows
Update a workflow
Update an existing workflow given its UUID.
PATCH
/transform/v1/workflows/{id}
Bearer*
curl --request PATCH \
--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 of the workflow to update.
Query Parameters
name
string
New name for the workflow.
description
string
Updated description.
integration_ids
array
New array of integration IDs to use for this workflow.
Body
description
string
Updated description.
integration_ids
string[]
New array of integration IDs to use for this workflow.
name
string
New name for 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.
curl --request PATCH \
--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"
}