GET /v2/teams/:team_id/teams_uploads
Return all the teams uploads of the given Team
GET /v2/teams_uploads
Return all the teams uploads
live_help Notes
chrome_reader_mode
This resource is paginated by 30 items
settings Params
Param name | Description |
---|---|
team_id |
optional
. Must be String
The team id |
sort |
optional
. Must be one of: id , team_id , upload_id , final_mark , comment , created_at , updated_at .
The sort field. Sorted by id asc by default. MoreExample:To sort on teams uploads on the fields created_at on a descending order and updated_at on a ascending order: ...&sort=-created_at,updated_at |
filter |
optional
. Must be one of: id , team_id , upload_id , final_mark , comment , created_at , updated_at .
Filtering on one or more fields MoreExample:
To filter on teams uploads with the
...&filter[id]=a_value,another_value Filterable fields:
|
range |
optional
. Must be one of: id , team_id , upload_id , final_mark , comment , created_at , updated_at .
Select on a particular range MoreExample:
To range on teams uploads with the
...&range[updated_at]=min_value,max_value Rangeable 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/teams_uploads
200
[
{
"id": 1,
"final_mark": 55,
"comment": "Fingerstache street 8-bit viral meditation banh mi xoxo keytar. Quinoa retro ugh organic kickstarter vegan loko disrupt. Cold-pressed keffiyeh retro.",
"created_at": "2017-11-22T13:42:09.325Z",
"upload_id": 1,
"upload": {
"id": 1,
"evaluation_id": 2,
"name": "Idaho kangaroos",
"description": "",
"created_at": "2017-11-22T13:41:26.168Z",
"updated_at": "2017-11-22T13:42:09.328Z"
}
}
]
curl -H "Authorization: Bearer YOUR_ACCESS_TOKEN" "https://api.intra.42.fr/v2/teams_uploads"
[
{
"id": 1,
"final_mark": 55,
"comment": "Fingerstache street 8-bit viral meditation banh mi xoxo keytar. Quinoa retro ugh organic kickstarter vegan loko disrupt. Cold-pressed keffiyeh retro.",
"created_at": "2017-11-22T13:42:09.325Z",
"upload_id": 1,
"upload": {
"id": 1,
"evaluation_id": 2,
"name": "Idaho kangaroos",
"description": "",
"created_at": "2017-11-22T13:41:26.168Z",
"updated_at": "2017-11-22T13:42:09.328Z"
}
}
]
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/teams_uploads")
response.status
# => 200
response.parsed
# => [{"id"=>1, "final_mark"=>55, "comment"=>"Fingerstache street 8-bit viral meditation banh mi xoxo keytar. Quinoa retro ugh organic kickstarter vegan loko disrupt. Cold-pressed keffiyeh retro.", "created_at"=>"2017-11-22T13:42:09.325Z", "upload_id"=>1, "upload"=>{"id"=>1, "evaluation_id"=>2, "name"=>"Idaho kangaroos", "description"=>"", "created_at"=>"2017-11-22T13:41:26.168Z", "updated_at"=>"2017-11-22T13:42:09.328Z"}}]