POP Engine™ Partner API Help

Create assessment

Command:

application_create

Invite a candidate to complete an assessment.

The Create application command has two forms: Simple Request and Extensible Request. The Extensible Request is recommended for use when the partner wishes to transfer arbitrary fields to the applicant's questionnaire (to display custom info or to get some extra info from the applicant for example). Also, all potential future extensions of functionality will be applied to the Extensible Request.

Simple create application

Create an application with basic user fields.

Request body parameters

command

string required

Set to "application_create".

partner_api

boolean required

Set to true.

position_id

integer int64 required

Any position_id returned by Get assessment types command

language_id

string

Any supported 3-letter language code, eg. "eng". This is the initial language in which the questionnaire will be presented to the candidate, and the initial language in which the report will be displayed. Consult SMG for information about which languages are available for each assessment.

app_email

string

If present, an invitation email with a link to complete the questionnaire will be emailed to the candidate. (If omitted it becomes the partner's responsibility to provide the candidate with the questionnaire link.)

app_phone

string

Phone number given as a sequence of digits without spaces or demarcations such as () and -. If present the applicant will receive an SMS containing a link to the questionnaire.

app_url

string

If present, will override the account-level callback url for this specific application. (See Account Config) Note that the [___API_ID___] substitution field is required for this field.

is_test

boolean

If present and true, assessment will be flagged as test data. Please set this option for any assessments generated when testing integration.

fail_on_dup

boolean

If present and true, assessment creation will fail if any assessments already exist for this candidate, identified based on their email address. See Create application with duplicates forbidden

{ "command": "application_create", "partner_api": true, "position_id": "10000000", "language_id": "eng", "app_email": "[email protected]", "app_full_name": "Adrian Candidate" }

Response body JSON

error_code

integer int64

Error code

error_text

string

Error text

command_from

string

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

application_id

string

ID of the created application to be used in subsequent commands

app_link_full

string

URL of the questionnaire to be filled in by applicant

{ "error_code": 0, "error_text": "", "command_from": "application_create", "application_id": "10009999", "app_link_full": "https://pop.selfmgmt.com/static/app_link/app_link.html?app_link=XXXXXXXX&acc_link=XXXXXXXX" }

Error codes

Error code

Description

905

Invalid position ID

1716

Mandatory custom field value missing

1726

Existing assessments for candidate found (if fail_on_dup set)

Extensible create application

Create an application with custom/arbitrary user fields.

Request body parameters

command

string required

Set to "application_create".

partner_api

boolean required

Set to true.

position_id

integer int64 required

Any position_id returned by Get assessment types command

language_id

string

Any supported 3-letter language code, eg. "eng". This is the initial language in which the questionnaire will be presented to the candidate, and the initial language in which the report will be displayed. Consult SMG for information about which languages are available for each assessment.

fields

Array of object

Array of arbitrary name/value pairs. When making an extensible request, app_email, app_full_name, app_phone and app_url fields can be included in this array and function the same as in a simple Create application request.

Child attributes

n

string required

Name of the field

v

string required

Value of the field

is_test

boolean

If present and true, assessment will be flagged as test data. Please set this option for any assessments generated when testing integration.

fail_on_dup

boolean

If present and true, assessment creation will fail if any assessments already exist for this candidate, identified based on their email address. See Create application with duplicates forbidden

{ "command": "application_create", "partner_api": true, "position_id": "10000000", "language_id": "eng", "fields": [ { "n": "email", "v": "[email protected]" }, { "n": "app_full_name", "v": "Betty Candidate" } ] }

Response body JSON

error_code

integer int64

Error code

error_text

string

Error text

command_from

string

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

application_id

string

ID of the created application to be used in subsequent commands

app_link_full

string

URL of the questionnaire to be filled in by applicant

{ "error_code": 0, "error_text": "", "command_from": "application_create", "application_id": "10009999", "app_link_full": "https://pop.selfmgmt.com/static/app_link/app_link.html?app_link=XXXXXXXX&acc_link=XXXXXXXX" }

Error codes

Error code

Description

905

Invalid position ID

1716

Mandatory custom field value missing

1726

Existing assessments for candidate found (if fail_on_dup set)

Create application with duplicates forbidden

To prevent the creation of duplicate applications for the same candidate, supply the "fail_on_dup" parameter as true.

If no duplicate applications are found, creation proceeds normally.

If duplicate applications are found, application is not created and POP Engine responds with error code 1726 and information about the duplicate applications.

If you wish to create the new application anyway, re-submit the request without the "fail_on_dup" parameter.

{ "command": "application_create", "partner_api": true, "position_id": "10000000", "language_id": "eng", "fields": [ { "n": "email", "v": "[email protected]" }, { "n": "app_full_name", "v": "Jason Candidate" } ], "fail_on_dup": true }

Response body JSON when duplicates found

error_code

integer int64

Error code; "1726" for this response

error_text

string

Error text

command_from

string

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

duplicates

Array of object

Duplicate applications

Child attributes

application_id

integer int64

ID of assessment which was requested

converted_from

string

ID of source assessment if converted from another assessment; "0" if not a converted assessment

account_id

string

ID of this assessment's account

position_id

string

ID of assessment type

position

string

Name of assessment type

language_id

string

3-letter language code assigned to the assessment

started

string YYYY-MM-DD

Date of invitation/assessment creation

completed

string YYYY-MM-DD

Date assessment is completed by candidate.

expires

string YYYY-MM-DD

Present if status="pending". Expiry date of application; questionnaire is not completable after this date.

fields

string Bar-separated fields Preset custom fields for assessment, such as candidate's name and email

{ "error_code": 1726, "error_text": "duplicates by email found: [email protected]", "command_from": "application_create", "duplicates": [ { "application_id": "99999999", "language_id": "eng", "converted_from": "0", "account_id": "10000000", "position_id": "10000000", "position": "POP7 Sales", "max_count": 1, "has_followup": false, "is_reusable": false, "app_type": 3, "date": "2024-10-18", "date_sub": "2024-10-18", "date_exp": "2034-10-16", "started": "2024-10-18", "expires": "2034-10-16", "completed": "2024-10-18", "fields": "app_email|[email protected]|app_full_name|Example Candidate" } ] }
Last modified: 24 October 2024