Workflows
Workflow management and execution endpoints
get
https://app.meingpt.com/api/workflows/v1/user-workflowsGet user workflows
Retrieves all workflows accessible to the authenticated user
🔒 ApiKeyAuth
Parameter
| Parameter | In | Typ | Beschreibung |
|---|---|---|---|
| Authorization* | header | string | API key for authentication. Use 'Bearer <your-api-key>' format. |
Responses
200Successfully retrieved workflows
SuccessResponse & object
500Internal server error
| Feld | Typ | Beschreibung |
|---|---|---|
| status | string | |
| message | string |
get
https://app.meingpt.com/api/workflows/v1/workflow-inputs/{workflowId}Get workflow input variables
Retrieves the input variables/parameters required to run a specific workflow
🔒 ApiKeyAuth
Parameter
| Parameter | In | Typ | Beschreibung |
|---|---|---|---|
| Authorization* | header | string | API key for authentication. Use 'Bearer <your-api-key>' format. |
| workflowId* | path | string | The workflow ID |
Responses
200Successfully retrieved workflow inputs
SuccessResponse & object
404Workflow not found
| Feld | Typ | Beschreibung |
|---|---|---|
| status | string | |
| message | string |
500Internal server error
| Feld | Typ | Beschreibung |
|---|---|---|
| status | string | |
| message | string |
post
https://app.meingpt.com/api/workflows/v1/{workflowId}/runRun a workflow
Executes a workflow with the provided input parameters
🔒 ApiKeyAuth
Parameter
| Parameter | In | Typ | Beschreibung |
|---|---|---|---|
| Authorization* | header | string | API key for authentication. Use 'Bearer <your-api-key>' format. |
| workflowId* | path | string | The workflow ID to execute |
Request Body · application/json
| Feld | Typ | Beschreibung |
|---|---|---|
| input* | object | Input parameters for the workflow execution |
Responses
200Workflow executed successfully
SuccessResponse & object
400Bad request - invalid input
| Feld | Typ | Beschreibung |
|---|---|---|
| status | string | |
| message | string |
403Forbidden - workflow API not enabled for organization
| Feld | Typ | Beschreibung |
|---|---|---|
| status | string | |
| message | string |
404Workflow not found
| Feld | Typ | Beschreibung |
|---|---|---|
| status | string | |
| message | string |
500Internal server error
| Feld | Typ | Beschreibung |
|---|---|---|
| status | string | |
| message | string |
Practical Usage
- Create and test workflows: /platform/workflows-create
- Use workflows in the platform: /platform/workflows
- Set up authentication before API calls: /api/authentication
Was this page helpful?