Official Tinq.ai python SDK.
Method | HTTP request | Description |
---|---|---|
create_workflow | POST /workflows | Create workflow |
execute_workflow | POST /workflows//execute | Execute workflow |
get_one_workflow | GET /workflows/ | Get one workflow |
get_workflows | GET /workflows | Get workflows |
create_workflow(content_type=content_type, accept=accept, body=body)Create workflow Create a workflow.
Name | Type | Description | Notes |
---|---|---|---|
content_type | str | [optional] | |
accept | str | [optional] | |
body | object | [optional] |
Status code | Description | Response headers |
---|---|---|
200 | Successful response | - |
execute_workflow(workflow_slug, content_type=content_type, accept=accept, body=body)Execute workflow Execute a workflow
Name | Type | Description | Notes |
---|---|---|---|
workflow_slug | str | ||
content_type | str | [optional] | |
accept | str | [optional] | |
body | object | [optional] |
Status code | Description | Response headers |
---|---|---|
200 | Successful response | - |
get_one_workflow(workflow_slug, accept=accept, content_type=content_type)Get one workflow Get one workflow
Name | Type | Description | Notes |
---|---|---|---|
workflow_slug | str | ||
accept | str | [optional] | |
content_type | str | [optional] |
Status code | Description | Response headers |
---|---|---|
200 | Successful response | - |
get_workflows()Get workflows List all user’s workflows
Status code | Description | Response headers |
---|---|---|
200 | Successful response | - |