Skip to main content

Get a specific template by ID or name

This endpoint returns the details of a specific template identified by its ID or name. Templates are used to create new flows. Each template includes details that help understanding what the created flow is used for (description), how it can be configured (parameters), what it expects as input (input types), and what it will provide as output (output types).

info

This endpoint allows you to get a specific template by id or name.

Endpoint

GET https://flows.generio.ai/templates/{template_id_or_name}

Parameters

template_id_or_name (required)

  • Location: path
  • Type: string

Responses

200

Successful Response

422

Validation Error

Code Examples

Copy and run these examples in your terminal or code editor. Make sure to replace YOUR_TOKEN with your actual authentication token.

curl -X GET "https://flows.generio.ai/templates/{template_id_or_name}" \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json"