Authentication

The partner ensures an authentication endpoint, via which profession.hu receives a token. With the help of the token, the status of the job advertisement may be queried (whether it exists or not in the partner’s ATS system). If the job advertisement does exist, the applicants may apply to it at the profession.hu site. If it is no longer available, we indicate to the applicant that the advertisement at the partner has already expired, and direct the applicant to a list site where other vacancies of the same advertiser can be found.

Authentication

POST

After successful authentication, the key returned must be sent as an access-token in the request header.

Query Parameters

{
   "authorize":{
      "response":{
         "access-token":{
            "type":"string",
            "nullable":false
         },
         "serverTime":{
            "type":"integer",
            "nullable":false,
            "description":"Server time timestamp."
         },
         "expirationTime":{
            "type":"integer",
            "nullable":false,
            "description":"Access token expiration date."
         },
         "expires":{
            "type":"integer",
            "nullable":false,
            "description":"Access token validity in seconds."
         }
      },
      "message":[
         
      ],
      "errorCode":200,
      "status":"success"
   }
}

Last updated