POST api/Job/UpdateJobCaptchaInput

If the institution requests user to read a captcha image for authentication, use this method to update the job with texts or numbers user read from the captcha image.

Request Information

URI Parameters

None.

Body Parameters

UpdateJobByCaptchaParams
NameDescriptionTypeAdditional information
JobID

Guid-type JobID

globally unique identifier

None.

CaptchaInput

Text read from the captcha image posted by the institution for authentication. E.g. when the captcha image contains image of texts or numbers that look like "AB1234", the CaptchaInput string can be given as following: "AB1234"

string

None.

Request Formats

application/json, text/json

Sample:
{ 
 "JobID": "e67b47d2-06a8-46ee-9fba-ec576873bbce",
 "CaptchaInput": "CAGT" 
}

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.