Skip to main content

post-1-click-health-request-body

POST /1-click/health Request Body
{
checkAfterAutofill?: boolean, // default defined by the Check After Autofill brand setting in the Verified Dashboard
provider?: {
npi: string // default defined by the Providers brand setting in the Verified Dashboard
},
identityUuid?: string, // from 1-Click Signup response body
fullName?: {
firstName?: string, // required if no identityUuid
middleName?: string,
lastName?: string // required if no identityUuid
},
birthDate?: string, // required if no identityUuid
address?: {
line1?: string,
line2?: string,
city?: string,
state?: string,
zipCode?: string,
country?: string
},
sex?: string,
ssn?: string,
payer?: {
id?: string, // specifies payer (or payer group)
name?: string, // searches for payer (or payer group): only use if id is not known
},
memberId?: string,
serviceTypeCodes?: string[],
procedureCodes?: {
code: string,
qualifier?: string,
modifiers?: string[]
}[]
}