Create an access token

POST https://softskilllab.arca24.careers/ws/v.1/token

Using this method you can retrive the access token you need in order to use all the other methods of the SoftskillLab API.

Input
  • grant_type*: it is always password;
  • client_id*: you can find this value after registering in SoftskillLab in the API Credentials area;
  • client_secret*: you can find this value after registering in SoftskillLab in the API Credentials area;
  • username*: you can find this value after registering in SoftskillLab in the API Credentials area;
  • password*: you can find this value after registering in SoftskillLab in the API Credentials area;
  • scope*: it is always employer
Output
  • access_token
  • expires_in
  • token_type
  • scope
  • refresh_token

Request Body

{"grant_type"=>"password", "client_id"=>"{{client_id}}", "client_secret"=>"{{client_secret}}", "username"=>"{{username}}", "password"=>"{{password}}", "scope"=>"employer"}

HEADERS

KeyDatatypeRequiredDescription
Content-Typestring
Acceptstring