Workflows
Get Workflow Details
Get workflow details by its ID.
GET
/
workflows
/
{workflow_id}
Copy
curl --request GET \
--url https://web.inquira.app/api/v1/workflows/{workflow_id} \
--header 'x-api-key: <api-key>'
Copy
{
"workflow": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"status": "released",
"language": "<string>",
"input_schema": {
"properties": {
"user_first_name": {
"type": "string",
"title": "First Name",
"description": "The patient's first name."
}
}
},
"phone_number_key": "<string>"
}
}
Authorizations
API key for authentication
Response
200
application/json
Object with workflow data.
The response is of type object
.
Copy
curl --request GET \
--url https://web.inquira.app/api/v1/workflows/{workflow_id} \
--header 'x-api-key: <api-key>'
Copy
{
"workflow": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"status": "released",
"language": "<string>",
"input_schema": {
"properties": {
"user_first_name": {
"type": "string",
"title": "First Name",
"description": "The patient's first name."
}
}
},
"phone_number_key": "<string>"
}
}
Assistant
Responses are generated using AI and may contain mistakes.