Create an access token
POST https://sem-ws.arca24.careers/v.1/token
Using this method you can retrive the access token you need in order to use all the other methods of the S.E.M. API.
Input
- grant_type*: it is always
password
; - clientid*: ask fot it sending an email to _sales@arca24.com;
- clientsecret*: ask fot it sending an email to _sales@arca24.com;
- username*: ask fot it sending an email to sales@arca24.com;
- password*: ask fot it sending an email to sales@arca24.com;
- scope*: ask fot it sending an email to sales@arca24.com;
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"=>"all"}
HEADERS
Key | Datatype | Required | Description |
---|---|---|---|
Content-Type | string | ||
Accept | string |