Workflows

Workflow management and execution endpoints

gethttps://app.meingpt.com/api/workflows/v1/user-workflows

Get user workflows

Retrieves all workflows accessible to the authenticated user

🔒 ApiKeyAuth

Parameter

ParameterInTypBeschreibung
Authorization*headerstringAPI key for authentication. Use 'Bearer <your-api-key>' format.

Responses

200Successfully retrieved workflows

SuccessResponse & object

500Internal server error
FeldTypBeschreibung
statusstring
messagestring
gethttps://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

ParameterInTypBeschreibung
Authorization*headerstringAPI key for authentication. Use 'Bearer <your-api-key>' format.
workflowId*pathstringThe workflow ID

Responses

200Successfully retrieved workflow inputs

SuccessResponse & object

404Workflow not found
FeldTypBeschreibung
statusstring
messagestring
500Internal server error
FeldTypBeschreibung
statusstring
messagestring
posthttps://app.meingpt.com/api/workflows/v1/{workflowId}/run

Run a workflow

Executes a workflow with the provided input parameters

🔒 ApiKeyAuth

Parameter

ParameterInTypBeschreibung
Authorization*headerstringAPI key for authentication. Use 'Bearer <your-api-key>' format.
workflowId*pathstringThe workflow ID to execute

Request Body · application/json

FeldTypBeschreibung
input*objectInput parameters for the workflow execution

Responses

200Workflow executed successfully

SuccessResponse & object

400Bad request - invalid input
FeldTypBeschreibung
statusstring
messagestring
403Forbidden - workflow API not enabled for organization
FeldTypBeschreibung
statusstring
messagestring
404Workflow not found
FeldTypBeschreibung
statusstring
messagestring
500Internal server error
FeldTypBeschreibung
statusstring
messagestring

Practical Usage

Was this page helpful?