settings Params

Param name Description
id required . Must be String

The requested id

GET /v2/notions/3
200
{
  "id": 3,
  "name": "Piscine OCaml - D01 - MOAR functions",
  "slug": "piscine-ocaml-d01-moar-functions",
  "created_at": "2017-11-22T13:41:23.822Z",
  "subnotions": [],
  "tags": [
    {
      "id": 3,
      "name": "GBmu",
      "kind": "project"
    }
  ],
  "cursus": [
    {
      "id": 2,
      "created_at": "2017-11-22T13:41:00.825Z",
      "name": "42",
      "slug": "42"
    }
  ]
}
curl  -H "Authorization: Bearer YOUR_ACCESS_TOKEN" "https://api.intra.42.fr/v2/notions/3"

{
  "id": 3,
  "name": "Piscine OCaml - D01 - MOAR functions",
  "slug": "piscine-ocaml-d01-moar-functions",
  "created_at": "2017-11-22T13:41:23.822Z",
  "subnotions": [],
  "tags": [
    {
      "id": 3,
      "name": "GBmu",
      "kind": "project"
    }
  ],
  "cursus": [
    {
      "id": 2,
      "created_at": "2017-11-22T13:41:00.825Z",
      "name": "42",
      "slug": "42"
    }
  ]
}
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/notions/3")
response.status
# => 200
response.parsed
# => {"id"=>3, "name"=>"Piscine OCaml - D01 - MOAR functions", "slug"=>"piscine-ocaml-d01-moar-functions", "created_at"=>"2017-11-22T13:41:23.822Z", "subnotions"=>[], "tags"=>[{"id"=>3, "name"=>"GBmu", "kind"=>"project"}], "cursus"=>[{"id"=>2, "created_at"=>"2017-11-22T13:41:00.825Z", "name"=>"42", "slug"=>"42"}]}