task_type your organization is provisioned with.
Example: a sleep-study (HST) referral. Throughout these guides we use one
concrete example — validating a Home Sleep Test referral packet with the
hst_validation_bin task type. It is only an example; the contract and the
result shape are identical for any order or referral you validate.How intake maps to the API
There are no intake-specific endpoints. Intake is the general Task flow pointed at a validationtask_type:
1
Create a validation Task
POST /task/create with a validation task_type and the referral or order
documents under uploads. It returns immediately with status: "pending"
and empty verdicts — the work has only been queued.2
Wait for it to finish
Poll
GET /task/get, or receive an opt-in callback, until the Task reaches a
terminal status. A Task that needs more documents pauses at waiting.3
Read the verdict
A completed validation Task carries
verdict_summaries, verdicts, and
issues — the structured decision and everything Synthpop flagged.task_type is required and provisioned for your organization during
onboarding — there is no endpoint that lists available types. Ask your Synthpop
contact which validation task types are enabled for you. An unknown value
returns 400 "Task type 'X' not in list of tasks for your organization: [...]."What a validation result contains
When the Task reachescompleted, the decision lives in these fields of the
returned TaskDetails:
code is the unit of approval — for example an HCPCS procedure code. A single
Task can carry several codes, each with its own verdict.
When a Task pauses at waiting
Validation frequently reveals that a required document is missing — a signed
order, a face-to-face visit note, an insurance card. Rather than failing, the
Task stops at status: "waiting" and lists what it needs in issues. You add
the missing files with POST /task/{uuid}/upload and the Task resumes on its
own. This is the normal intake loop, not an error — see
Responding to waiting tasks.
The public status is always
waiting when a Task needs more input — a normal
pause, not an error.Next
Validate an order
The full end-to-end walkthrough: create, poll, and interpret the result.
Multi-patient submissions
When one packet contains several patients, and how to find the child Tasks.
Results: verdicts & issues
The full shape of verdicts, summaries, and task issues.
Responding to waiting tasks
Upload the missing documents and resume a paused Task.

