GET /v2/campus/:id
Get a campus
settings Params
Param name | Description |
---|---|
id |
required
. Must be String
The requested id |
Examples
GET /v2/campus/3
200
{
"id": 3,
"name": "Chisinau",
"time_zone": "Europe/Bucharest",
"language": {
"id": 3,
"name": "Romanian",
"identifier": "ro"
},
"users_count": 15,
"vogsphere_id": 1,
"endpoint": null
}
curl -H "Authorization: Bearer YOUR_ACCESS_TOKEN" "https://api.intra.42.fr/v2/campus/3"
{
"id": 3,
"name": "Chisinau",
"time_zone": "Europe/Bucharest",
"language": {
"id": 3,
"name": "Romanian",
"identifier": "ro"
},
"users_count": 15,
"vogsphere_id": 1,
"endpoint": null
}
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/campus/3")
response.status
# => 200
response.parsed
# => {"id"=>3, "name"=>"Chisinau", "time_zone"=>"Europe/Bucharest", "language"=>{"id"=>3, "name"=>"Romanian", "identifier"=>"ro"}, "users_count"=>15, "vogsphere_id"=>1, "endpoint"=>nil}