Skip to main content
GET
/
forms
/
submissions
Get Patient Submissions
curl --request GET \
  --url https://api.decodahealth.com/forms/submissions \
  --header 'API-KEY: <api-key>' \
  --header 'Content-Type: application/json' \
  --header 'TENANT: <tenant>' \
  --data '[
  "DYNAMIC"
]'
{
  "data": [
    {
      "patient": {
        "id": "<string>",
        "type": "PROVIDER",
        "firstName": "<string>",
        "lastName": "<string>",
        "phoneNumber": "<string>",
        "email": "<string>",
        "locationId": "<string>"
      },
      "formId": "<string>",
      "submissionDate": "2023-11-07T05:31:56Z",
      "isCompleted": true,
      "hadUploadError": true
    }
  ],
  "total": 123
}

Headers

TENANT
string
required

The tenant you are making this request on behalf of

API-KEY
string
required

Your api key

Query Parameters

page
integer | null
per_page
integer | null
sort_by
string | null
sort_direction
enum<string> | null
Available options:
asc,
desc
location_id
string | null
patient_name
string | null
submission_date
string | null
patient_id
string | null
phone_number
string | null
form_ids
string | null
had_upload_error
string | null
is_completed
string | null
tz
string
required

Body

application/json
Available options:
DYNAMIC,
DEMOGRAPHICS,
INSURANCE,
PAYMENT_METHODS,
MEDICAL_HISTORY

Response

Successful Response

data
PatientSubmissionTableItem · object[]
required
total
integer
required