POP Engine™ Partner API Help

Submit answers

Command:

score_calc_set

Submit the answers to a questionnaire filled by the candidate.

Request body parameters

command

string required

Set to "score_calc_set"

app_link

string required

Application hash code; it can be extracted from the "app_link_fill" field returned as part of the JSON reply to the Create application request

fields

Array of object

Values for custom fields

Child attributes

n

string

Field name

v

string

Field value

answers

Array of object required

Answers to questionnaire questions

Child attributes

q

integer int64 or string

Question ID

a

integer int64 or string

Answer; for multiple-choice questions, integer of candidate's choice; for free text questions, string containing candidate's answer

{ "command": "score_calc_set", "app_link": "XXXXXXXX", "fields": [ { "n": "app_full_name", "v": "Alice Candidate" }, { "n": "email", "v": "[email protected]" } ], "answers": [ { "q": "3", "a": 3 }, { "q": "4", "a": "Toronto, ON" } ] }

Response body JSON

error_code

integer int64

Error code

error_text

string

Error text

command_from

string

The command used to generate this response ("score_calc_set")

{ "error_code": 0, "error_text": "", "command_from": "score_calc_set" }

Error codes

Error code

Description

1716

Missing required custom field(s)

1850

Missing answer(s)

Last modified: 24 October 2024