PUT api/v1/jobboards/{jobBoardName}/assignJobBoardCredentials?countryCode={countryCode}&recruiterLoginName={recruiterLoginName}

Assign JobBoard Credentials

Request Information

Parameters

NameDescriptionAdditional information
jobBoardName
Value of Arya job board  name like careerbuilder/monster/dice/indeed/nexxt/efinancial/resumelibrary

Define this parameter in the request URI.

request
Sample Json
            {
                 "Username": "sample string 1",
                 "Password": "sample string 2",
                 "AccessToken": "sample string 3",
                 "AccountID": "sample string 4",
                 "AccountKey": "sample string 5"
            }
            
            Following parameters are mandatory for the respective job boards
            
            CareerBuilder        :            Username, Password
            Dice                 :            Username, Password, AccountID, AccountKey
            Monster              :            AccessToken
            Indeed               :            AccessToken
            Nexxt                :            Username, Password, AccountID
            EFinancial           :            Username, Password
            ResumeLibrary        :            Username, Password, AccountID, AccountKey

Define this parameter in the request body.

countryCode
country code mandatory for monster/dice

Define this parameter in the request URI.

recruiterLoginName
login id of recruiter

Define this parameter in the request URI.

Request body formats

application/json, text/json

Sample:
{
  "Username": "sample string 1",
  "Password": "sample string 2",
  "AccessToken": "sample string 3",
  "AccountID": "sample string 4",
  "AccountKey": "sample string 5"
}

application/xml, text/xml

Sample:
<JobBoardCredentials xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <Username>sample string 1</Username>
  <Password>sample string 2</Password>
  <AccessToken>sample string 3</AccessToken>
  <AccountID>sample string 4</AccountID>
  <AccountKey>sample string 5</AccountKey>
</JobBoardCredentials>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'JobBoardCredentials'.