live_help Notes

assignment This action requires one of theses roles: Advanced tutor

settings Params

Param name Description
id required . Must be String

The requested id

GET /v2/patronages/113
200
{
  "id": 113,
  "user_id": 119,
  "godfather_id": 85,
  "ongoing": true,
  "created_at": "2017-11-22T13:42:12.697Z",
  "updated_at": "2017-11-22T13:42:12.704Z",
  "user": {
    "id": 119,
    "login": "hasolo",
    "url": "https://api.intra.42.fr/v2/users/hasolo"
  },
  "godfather": {
    "id": 85,
    "login": "chewchew",
    "url": "https://api.intra.42.fr/v2/users/chewchew"
  }
}
curl  -H "Authorization: Bearer YOUR_ACCESS_TOKEN" "https://api.intra.42.fr/v2/patronages/113"

{
  "id": 113,
  "user_id": 119,
  "godfather_id": 85,
  "ongoing": true,
  "created_at": "2017-11-22T13:42:12.697Z",
  "updated_at": "2017-11-22T13:42:12.704Z",
  "user": {
    "id": 119,
    "login": "hasolo",
    "url": "https://api.intra.42.fr/v2/users/hasolo"
  },
  "godfather": {
    "id": 85,
    "login": "chewchew",
    "url": "https://api.intra.42.fr/v2/users/chewchew"
  }
}
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/patronages/113")
response.status
# => 200
response.parsed
# => {"id"=>113, "user_id"=>119, "godfather_id"=>85, "ongoing"=>true, "created_at"=>"2017-11-22T13:42:12.697Z", "updated_at"=>"2017-11-22T13:42:12.704Z", "user"=>{"id"=>119, "login"=>"hasolo", "url"=>"https://api.intra.42.fr/v2/users/hasolo"}, "godfather"=>{"id"=>85, "login"=>"chewchew", "url"=>"https://api.intra.42.fr/v2/users/chewchew"}}