live_help Notes

chrome_reader_mode This resource is paginated by 30 items

settings Params

Param name Description
project_session_id optional . Must be String

The project_session id

sort optional . Must be one of: id, coordinates, created_at, updated_at, by, kind, project_session_id.

The sort field. Sorted by id desc by default.

Example:

To sort on project data on the fields kind on a descending order and project_session_id on a ascending order:

...&sort=-kind,project_session_id

filter optional . Must be one of: id, coordinates, created_at, updated_at, by, kind, project_session_id.

Filtering on one or more fields

Example:

To filter on project data with the id field matching a_value or another_value:

...&filter[id]=a_value,another_value

Filterable fields:
  • id (standard field)
  • coordinates (standard field)
  • created_at (standard field)
  • updated_at (standard field)
  • by (standard field)
  • kind (standard field)
  • project_session_id (standard field)
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/project_data
200
[
  {
    "id": 6,
    "coordinates": [
      73.0,
      53.0
    ],
    "by": [],
    "kind": "project",
    "project_session_id": 3
  },
  {
    "id": 4,
    "coordinates": [
      63.0,
      81.0
    ],
    "by": [],
    "kind": "exam",
    "project_session_id": 2
  },
  {
    "id": 5,
    "coordinates": [
      80.0,
      76.0
    ],
    "by": [],
    "kind": "exam",
    "project_session_id": 2
  }
]
curl  -H "Authorization: Bearer YOUR_ACCESS_TOKEN" "https://api.intra.42.fr/v2/project_data"

[
  {
    "id": 6,
    "coordinates": [
      73.0,
      53.0
    ],
    "by": [],
    "kind": "project",
    "project_session_id": 3
  },
  {
    "id": 4,
    "coordinates": [
      63.0,
      81.0
    ],
    "by": [],
    "kind": "exam",
    "project_session_id": 2
  },
  {
    "id": 5,
    "coordinates": [
      80.0,
      76.0
    ],
    "by": [],
    "kind": "exam",
    "project_session_id": 2
  }
]
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/project_data")
response.status
# => 200
response.parsed
# => [{"id"=>6, "coordinates"=>[73.0, 53.0], "by"=>[], "kind"=>"project", "project_session_id"=>3}, {"id"=>4, "coordinates"=>[63.0, 81.0], "by"=>[], "kind"=>"exam", "project_session_id"=>2}, {"id"=>5, "coordinates"=>[80.0, 76.0], "by"=>[], "kind"=>"exam", "project_session_id"=>2}]