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.

Example:

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

Example:

To filter on teams uploads with the id field matching a_value or another_value:

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

Filterable fields:
  • id (standard field)
  • team_id (standard field)
  • upload_id (standard field)
  • final_mark (standard field)
  • comment (standard field)
  • created_at (standard field)
  • updated_at (standard field)
range optional . Must be one of: id, team_id, upload_id, final_mark, comment, created_at, updated_at.

Select on a particular range

Example:

To range on teams uploads with the updated_at field between min_value and max_value:

...&range[updated_at]=min_value,max_value

Rangeable fields:
  • id
  • team_id
  • upload_id
  • final_mark
  • comment
  • created_at
  • updated_at
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/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"}}]