Count all occurences on a particular field (default on created_at) by a particular period, starting from the first occurence to now.

settings Params

Param name Description
field optional . Must be one of: created_at, updated_at, locked_at, closed_at, deadline_at, terminating_at.

The date field to graph on. Default to created_at.

interval optional . Must be one of: day, week, month, quarter, year, hour_of_day, day_of_week, day_of_month, month_of_year.

The interval to graph by. Default to month_of_year.

sort optional . Must be one of: id, project_id, name, created_at, updated_at, locked_at, closed_at, final_mark, repo_url, repo_uuid, deadline_at, terminating_at, project_session_id, status.

The sort field. Sorted by id asc by default.

Example:

To sort on teams on the fields project_session_id on a descending order and status on a ascending order:

...&sort=-project_session_id,status

filter optional . Must be one of: id, project_id, name, created_at, updated_at, locked_at, closed_at, final_mark, repo_url, repo_uuid, deadline_at, terminating_at, project_session_id, status, cursus, active_cursus, campus, primary_campus, locked, closed, deadline, terminating, with_mark.

Filtering on one or more fields

Example:

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

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

Filterable fields:
  • id (standard field)
  • project_id (standard field)
  • name (standard field)
  • created_at (standard field)
  • updated_at (standard field)
  • locked_at (standard field)
  • closed_at (standard field)
  • final_mark (standard field)
  • repo_url (standard field)
  • repo_uuid (standard field)
  • deadline_at (standard field)
  • terminating_at (standard field)
  • project_session_id (standard field)
  • status (standard field)
  • cursus : Only return teams with users in the given cursus. Can be one of: 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 25, 26, 27, 28, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 73, 74, 75, 76
  • active_cursus : Only return teams with users in the given cursus. Can be one of: 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 25, 26, 27, 28, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 46, 47, 48, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 73, 74, 75, 76
  • campus : Only return teams with users in the given campus. Can be one of: 1, 2, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74
  • primary_campus : Only return teams with users having the campus as a primary campus. Can be one of: 1, 2, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74
  • locked (standard field)
  • closed (standard field)
  • deadline (standard field)
  • terminating (standard field)
  • with_mark : Return only teams with a final_mark. Can be one of: true, false
range optional . Must be one of: id, project_id, name, created_at, updated_at, locked_at, closed_at, final_mark, repo_url, repo_uuid, deadline_at, terminating_at, project_session_id, status.

Select on a particular range

Example:

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

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

Rangeable fields:
  • id
  • project_id
  • name
  • created_at
  • updated_at
  • locked_at
  • closed_at
  • final_mark
  • repo_url
  • repo_uuid
  • deadline_at
  • terminating_at
  • project_session_id
  • status
GET /v2/teams/graph/on/created_at/by/day
200
{
  "2017-11-22": 68
}
curl  -H "Authorization: Bearer YOUR_ACCESS_TOKEN" "https://api.intra.42.fr/v2/teams/graph/on/created_at/by/day"

{
  "2017-11-22": 68
}
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/graph/on/created_at/by/day")
response.status
# => 200
response.parsed
# => {"2017-11-22"=>68}