PATCH
/
transform
/
v1
/
workflows
/
{id}
curl --request PATCH \
  --url https://api.invopop.com/transform/v1/workflows/{id} \
  --header 'Content-Type: application/json' \
  --data '{
  "description": "<string>",
  "name": "<string>",
  "steps": [
    {
      "config": {},
      "id": "186522a6-e697-4e34-8498-eee961bcb845",
      "name": "<string>",
      "next": [
        {
          "status": "OK",
          "step_id": "186522a6-e697-4e34-8498-eee961bcb845",
          "stop": true
        }
      ],
      "notes": "<string>",
      "provider": "provider"
    }
  ]
}'
{
  "country": "<string>",
  "created_at": "<string>",
  "description": "<string>",
  "disabled": true,
  "id": "186522a6-e697-4e34-8498-eee961bcb845",
  "name": "<string>",
  "schema": "<string>",
  "steps": [
    {
      "config": {},
      "id": "186522a6-e697-4e34-8498-eee961bcb845",
      "name": "<string>",
      "next": [
        {
          "status": "OK",
          "step_id": "186522a6-e697-4e34-8498-eee961bcb845",
          "stop": true
        }
      ],
      "notes": "<string>",
      "provider": "provider"
    }
  ],
  "updated_at": "<string>",
  "version": "<string>"
}

Path Parameters

id
string
required

UUID of the workflow to update.

Example:

"186522a6-e697-4e34-8498-eee961bcb845"

Body

application/json

Response

200 - application/json

OK

The response is of type object.