post https://partners.apploi.com/easy-apply
This endpoint is used to submit applications for candidates.
Formatting questions.answers
data in the request
questions.answers
data in the requestIt is important to emphasize here that, when including answers to application questions in the request to this endpoint, all value
and values
provided must be strings, even if they represent numeric values. For example:
Given a question with the following structure:
{
'id': 1829050,
'question': 'Are you 21 years of age?',
'required': True,
'type': 'select',
'options': [
{'value': 0, 'label': 'Yes'},
{'value': 1, 'label': 'No'}
]
}
Even though the indices for the options
are numerical values, they must be specified in the questions.answers
answer object as numerical string values like "0"
or "1"
. For example:
{
...
"questions": {
"answers": [
// "select" type answer
{
"id": "1829050",
"value": "0"
},
...
}
A full example of a request is provided in the guide page for submitting a full application.