Contacts

This page describes all the APIs relating to contacts.

Get all Contacts

get
/api/v3/contacts
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Query parameters
pageinteger · min: 1Optional

The page number of results to return.

Default: 1
per_pageinteger · min: 1 · max: 200Optional

Request for how many records to return.

Default: 50
countintegerOptional

Synonym for per_page

Responses
200

successful

application/json
get
/api/v3/contacts
200

successful

Create a New Contact

post
/api/v3/contacts
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Body
first_namestringRequired
last_namestringRequired
phone_numberstringRequired
emailstringRequired
employer_companystringOptional
job_titlestringOptional
applied_academic_yearstringOptional
applied_gradestringOptional
campus_idintegerOptional
agent_idinteger[]Optional
tag_idsinteger[]Optional
source_campaign_idintegerOptional
Responses
200

successful

application/json
post
/api/v3/contacts

Get a Contact

get
/api/v3/contacts/{id}
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
idintegerRequired

Serial database ID that uniquely identifies a contact record in OpenApply

Responses
200

successful

application/json
get
/api/v3/contacts/{id}
200

successful

Update a Contact

put
/api/v3/contacts/{id}
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
idintegerRequired

Serial database ID that uniquely identifies a contact record in OpenApply

Body
first_namestringOptional
last_namestringOptional
phone_numberstringOptional
emailstringOptional
employer_companystringOptional
job_titlestringOptional
applied_academic_yearstringOptional
applied_gradestringOptional
campus_idintegerOptional
agent_idinteger[]Optional
tag_idsinteger[]Optional
source_campaign_idintegerOptional
Responses
200

successful

application/json
put
/api/v3/contacts/{id}

Last updated

Was this helpful?