live_help Notes

chrome_reader_mode This resource is paginated by 30 items

settings Params

Param name Description
user_id optional . Must be String

The user id or slug

page optional . Must be a Hash

The pagination params, as a hash

page[number] optional . Must be Fixnum

The current page

page[size] optional . Must be Fixnum

The number of items per page, defaults to 30, maximum 100

GET /v2/groups
200
[
  {
    "id": 1,
    "name": "gnomes"
  },
  {
    "id": 2,
    "name": "vampires"
  },
  {
    "id": 3,
    "name": "sons"
  }
]
curl  -H "Authorization: Bearer YOUR_ACCESS_TOKEN" "https://api.intra.42.fr/v2/groups"

[
  {
    "id": 1,
    "name": "gnomes"
  },
  {
    "id": 2,
    "name": "vampires"
  },
  {
    "id": 3,
    "name": "sons"
  }
]
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/groups")
response.status
# => 200
response.parsed
# => [{"id"=>1, "name"=>"gnomes"}, {"id"=>2, "name"=>"vampires"}, {"id"=>3, "name"=>"sons"}]