Processors
Create a processor
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
Processors
Create a processor
POST
/
v1
/
processors
curl --request POST \
--url https://app.enzo.health/api/v1/processors \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"organizationId": "<string>",
"processor": {
"config": {
"sections": [
{
"name": "<string>",
"fieldsToExtract": [
{
"fieldName": "<string>",
"description": "<string>"
}
]
}
]
},
"name": "<string>",
"type": "EXTRACT"
}
}'
{
"processor": {
"id": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>",
"organizationId": "<string>",
"creatorId": "<string>",
"config": {
"sections": [
{
"name": "<string>",
"fieldsToExtract": [
{
"fieldName": "<string>",
"description": "<string>"
}
]
}
]
},
"metadata": {
"extendWorkflowId": "<string>",
"extendWorkflowVersion": "<string>"
},
"published": true,
"name": "<string>",
"type": "EXTRACT"
}
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
application/json
Available options:
EXTRACT
, CLASSIFY
Response
200
application/json
Successful response
Available options:
EXTRACT
, CLASSIFY
curl --request POST \
--url https://app.enzo.health/api/v1/processors \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"organizationId": "<string>",
"processor": {
"config": {
"sections": [
{
"name": "<string>",
"fieldsToExtract": [
{
"fieldName": "<string>",
"description": "<string>"
}
]
}
]
},
"name": "<string>",
"type": "EXTRACT"
}
}'
{
"processor": {
"id": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>",
"organizationId": "<string>",
"creatorId": "<string>",
"config": {
"sections": [
{
"name": "<string>",
"fieldsToExtract": [
{
"fieldName": "<string>",
"description": "<string>"
}
]
}
]
},
"metadata": {
"extendWorkflowId": "<string>",
"extendWorkflowVersion": "<string>"
},
"published": true,
"name": "<string>",
"type": "EXTRACT"
}
}