Profession Connect | Docs
English
English
  • Introduction
  • ADVERTISEMENT MANAGEMENT
    • Advertisement data
    • Template and text structure
    • Updating frequency of the XML data file
    • Advertisement management scenarios
  • APPLICANT MANAGEMENT
    • Authentication
    • Advertisement status and query of privacy texts
    • Sending applicant data
    • Examples
  • Testing
    • Testing procedure
Powered by GitBook
On this page
  1. APPLICANT MANAGEMENT

Advertisement status and query of privacy texts

Based on an identification code, it returns the status of the advertisement and the Privacy Policy.

GET

Query Parameters

Name
Type
Description

jobId*

String

Job ID

Headers

Name
Type
Description

access-token*

String

"check":{
   "response":{
      "termsAndConditions":{
         "type":"array",
         "nullable":false,
         "description":"Privacy policy text",
         "items":{
            "termsAndConditionText":{
               "type":"object",
               "nullable":false,
               "properties":{
                  "language":{
                     "type":"string",
                     "nullable":false,
                     "description":"Language of the text"
                  },
                  "content":{
                     "type":"string",
                     "nullable":false,
                     "description":"Privacy policy text"
                  }
               }
            }
         }
      }
   },
   "message":[],
   "errorCode":200,
   "status":"success"
}
"check":{
   "response":[],
   "message":[],
   "errorCode":404,
   "status":"failed"
}

EXAMPLES

Request

Header

{
	“access-token”: “xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx”
}

Data

{
	'jobId': {
		'type': 'string',
		'nullable': false,
		'description': 'Job ID'
	}
}

1.Response

  • HTTP status code: 200

  • Description: Successful

check: {
    response: {
		termsAndConditions: {
			type: "array",
			nullable: false,
			description: "Privacy policy text",
			items: {
				termsAndConditionText: {
					type: "object",
					nullable: false,
					properties: {
						language: {
							type: "string",
							nullable: false,
							description: "Language of the text"
						},
						content: {
							type: "string",
							nullable: false,
							description: "Privacy policy text"
						}
					}
				}
			}
		}
    },
    message: [],
    errorCode: 200,
    status: "success"
}

2.Response

  • HTTP status code: 404

  • Description: There are no such positions available to apply for

check: {
    response: [],
    message: [],
    errorCode: 404,
    status: "failed"
}
PreviousAuthenticationNextSending applicant data

Last updated 1 year ago