settings Params

Param name Description
id required . Must be String

The requested id

GET /v2/locations/4
200
{
  "id": 4,
  "begin_at": "2017-11-19T13:42:09.511Z",
  "end_at": "2017-11-19T16:42:09.511Z",
  "primary": true,
  "floor": null,
  "row": null,
  "post": null,
  "host": "oberon",
  "campus_id": 1,
  "user": {
    "id": 59,
    "login": "davader",
    "url": "https://api.intra.42.fr/v2/users/davader"
  }
}
curl  -H "Authorization: Bearer YOUR_ACCESS_TOKEN" "https://api.intra.42.fr/v2/locations/4"

{
  "id": 4,
  "begin_at": "2017-11-19T13:42:09.511Z",
  "end_at": "2017-11-19T16:42:09.511Z",
  "primary": true,
  "floor": null,
  "row": null,
  "post": null,
  "host": "oberon",
  "campus_id": 1,
  "user": {
    "id": 59,
    "login": "davader",
    "url": "https://api.intra.42.fr/v2/users/davader"
  }
}
require "oauth2"
UID = "Your application uid"
SECRET = "Your application secret"
client = OAuth2::Client.new(UID, SECRET, site: "https://api.intra.42.fr")
token = client.client_credentials.get_token

response = token.get("/v2/locations/4")
response.status
# => 200
response.parsed
# => {"id"=>4, "begin_at"=>"2017-11-19T13:42:09.511Z", "end_at"=>"2017-11-19T16:42:09.511Z", "primary"=>true, "floor"=>nil, "row"=>nil, "post"=>nil, "host"=>"oberon", "campus_id"=>1, "user"=>{"id"=>59, "login"=>"davader", "url"=>"https://api.intra.42.fr/v2/users/davader"}}