settings Params

Param name Description
id required . Must be String

The requested id

GET /v2/groups_users/4
200
{
  "id": 4,
  "user_id": 101,
  "group_id": 4,
  "created_at": "2017-11-22T13:42:13.028Z",
  "updated_at": "2017-11-22T13:42:13.028Z"
}
curl  -H "Authorization: Bearer YOUR_ACCESS_TOKEN" "https://api.intra.42.fr/v2/groups_users/4"

{
  "id": 4,
  "user_id": 101,
  "group_id": 4,
  "created_at": "2017-11-22T13:42:13.028Z",
  "updated_at": "2017-11-22T13:42:13.028Z"
}
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_users/4")
response.status
# => 200
response.parsed
# => {"id"=>4, "user_id"=>101, "group_id"=>4, "created_at"=>"2017-11-22T13:42:13.028Z", "updated_at"=>"2017-11-22T13:42:13.028Z"}