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

Headers

"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"
}

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"
}

Last updated