Suggest workflows

<Info>This API is in beta. Endpoints, fields, and behavior may still change, so avoid depending on it in production.</Info>

Suggests workflows worth building for this app.

Each suggestion carries a prompt you can send straight to Send chat message to have the builder create it. Nothing is saved by calling this.

page picks between two different sets, so 0 and 1 give you meaningfully different ideas. Anything higher is treated as the last page rather than rejected. Results are cached per app and page, so asking twice returns the same set.

suggestions can come back empty when the model returns nothing usable, under a 200.

This endpoint is limited to 5 requests per minute.

get/api/apps/{app_id}/workflows/suggestions

Path parameters

app_idstring required

ID of the app whose workflows you want to work with.

ID of the app whose workflows you want to work with.

Query parameters

pageinteger

Which set of ideas to return. 0 and 1 give different sets; anything higher returns the last set.

Which set of ideas to return. 0 and 1 give different sets; anything higher returns the last set.

Response

Workflow ideas for this app.

Example response

{
  "suggestions": [
    {
      "description": "Send yourself an email whenever someone creates an account.",
      "prompt": "Create a workflow that emails me whenever a new User record is created.",
      "title": "Email me new signups"
    }
  ]
}

Changes