GET /v2/project_data
Return all the project data
GET /v2/project_sessions/:project_session_id/project_data
Return all the project data of the given Project session
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 |
filter |
optional
. Must be one of: id , coordinates , created_at , updated_at , by , kind , project_session_id .
Filtering on one or more fields MoreExample:
To filter on project data with the
...&filter[id]=a_value,another_value Filterable fields:
|
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 |
Examples
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}]