POST api/Job/UpdateJobSecurityAnswer

If the institution requests one or more security questions for authentication, use this method to update the job with security answers to the questions.

Request Information

URI Parameters

None.

Body Parameters

UpdateJobBySecurityAnswerParams
NameDescriptionTypeAdditional information
JobID

Guid-type JobID

globally unique identifier

None.

SecurityAnswer

Answers to one or more security questions posted by the institution for authentication. E.g. when the SecurityQuestion field in the Job is as following: "['what is your favorite color?', 'what is your favorite fruit?']" The SecurityAnswer string can be given as following: "['blue', 'apple']"

string

None.

Request Formats

application/json, text/json

Sample:
E.g. "SecurityQuestion" shows "[\"what is your favorite color\", \"what is your least favorite color\"]", update job with answers 
(note even if there is only one question, answer needs to be a stringified array): 
{ 
 "JobID": "e67b47d2-06a8-46ee-9fba-ec576873bbce",
 "SecurityAnswer": "[\"red\", \"blue\"]" 
}

application/xml, text/xml

Sample:
Coming soon.

Response Information

Resource Description

0 for success, -1 for failure

TransmitStatusEnums

Response Formats

application/json, text/json

Sample:
0

application/xml, text/xml

Sample:
Coming soon.