API
- Introduction
- Authentication
- Idempotency
- Versioning
- Silo
- Transform
- Sequences
- Access
- Utils
Workflows
Fetch a workflow
Fetch an existing workflow given its UUID.
GET
/
transform
/
v1
/
workflows
/
{id}
curl --request GET \
--url https://api.invopop.com/transform/v1/workflows/{id}
{
"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 of the workflow to fetch.
Example:
"5b45453c-cdd0-11ed-afa1-0242ac120002"
Response
200 - application/json
OK
The response is of type object
.
curl --request GET \
--url https://api.invopop.com/transform/v1/workflows/{id}
{
"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>"
}
Assistant
Responses are generated using AI and may contain mistakes.