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

project_id optional . Must be String

The project id or slug

user_id optional . Must be String

The user id or slug

sort optional . Must be one of: id, user_id, begin_at, created_at, updated_at, scale_id, team_id, comment, old_feedback, feedback_rating, final_mark, truant_id, flag_id, token, ip, internship_id, filled_at.

The sort field. Sorted by begin_at desc, id desc by default.

Example:

To sort on scale teams on the fields internship_id on a descending order and filled_at on a ascending order:

...&sort=-internship_id,filled_at

filter optional . Must be one of: id, user_id, begin_at, created_at, updated_at, scale_id, team_id, comment, old_feedback, feedback_rating, final_mark, truant_id, flag_id, token, ip, internship_id, filled_at, campus_id, cursus_id, future, filled.

Filtering on one or more fields

Example:

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

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

Filterable fields:
  • id (standard field)
  • user_id (standard field)
  • begin_at (standard field)
  • created_at (standard field)
  • updated_at (standard field)
  • scale_id (standard field)
  • team_id (standard field)
  • comment (standard field)
  • old_feedback (standard field)
  • feedback_rating (standard field)
  • final_mark (standard field)
  • truant_id (standard field)
  • flag_id (standard field)
  • token (standard field)
  • ip (standard field)
  • internship_id (standard field)
  • filled_at (standard field)
  • campus_id : .
  • cursus_id : .
  • future : Return only scale teams which begins in the future. Can be one of: true, false
  • filled (standard field)
range optional . Must be one of: id, user_id, begin_at, created_at, updated_at, scale_id, team_id, comment, old_feedback, feedback_rating, final_mark, truant_id, flag_id, token, ip, internship_id, filled_at.

Select on a particular range

Example:

To range on scale teams with the filled_at field between min_value and max_value:

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

Rangeable fields:
  • id
  • user_id
  • begin_at
  • created_at
  • updated_at
  • scale_id
  • team_id
  • comment
  • old_feedback
  • feedback_rating
  • final_mark
  • truant_id
  • flag_id
  • token
  • ip
  • internship_id
  • filled_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/scale_teams
200
[

]
curl  -H "Authorization: Bearer YOUR_ACCESS_TOKEN" "https://api.intra.42.fr/v2/scale_teams"

[

]
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/scale_teams")
response.status
# => 200
response.parsed
# => []