Getting Started
Workflow
Processors
Organizations
Patients
Voice Notes
Transcripts
- GETGet paginated finalized sentences for a voice note
- GETFetch details for multiple finalized sentences
- POSTSearch sentences by embedding
- POSTSave voice note audio
- POSTGenerate audio upload URL
- GETGenerate presigned voice note audio URL
- GETGet list of questions to check in transcripts
- GETGet the answered status of predefined questions for a voice note
Survey
Visits
Subscribers
Workflow Run
Start Workflow Run
POST
/
v1
/
workflowRuns
/
{publicId}
/
start
Copy
curl --request POST \
--url https://app.enzo.health/api/v1/workflowRuns/{publicId}/start \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"prefilledVariables": {
"Input File": "https://example.com/file.txt"
},
"workflowExecutionId": "<string>"
}'
Copy
{
"sessionId": "<string>",
"workflowExecutionId": "<string>",
"workflow": {
"id": "<string>"
},
"logs": [
{
"status": "<string>",
"description": "<string>",
"details": "<any>"
}
],
"progress": 123,
"event": {
"id": "<string>",
"name": "<string>",
"payload": "<any>"
}
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Body
application/json
Response
200
application/json
Successful response
The response is of type object
.
Copy
curl --request POST \
--url https://app.enzo.health/api/v1/workflowRuns/{publicId}/start \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"prefilledVariables": {
"Input File": "https://example.com/file.txt"
},
"workflowExecutionId": "<string>"
}'
Copy
{
"sessionId": "<string>",
"workflowExecutionId": "<string>",
"workflow": {
"id": "<string>"
},
"logs": [
{
"status": "<string>",
"description": "<string>",
"details": "<any>"
}
],
"progress": 123,
"event": {
"id": "<string>",
"name": "<string>",
"payload": "<any>"
}
}
Assistant
Responses are generated using AI and may contain mistakes.