GET
/
workflows
/
{workflow_id}
curl --request GET \
  --url https://web.inquira.app/api/v1/workflows/{workflow_id} \
  --header 'x-api-key: <api-key>'
{
  "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

x-api-key
string
header
required

API key for authentication

Response

200
application/json
Object with workflow data.
workflow
object
required

Detailed workflow information