live_help Notes

chrome_reader_mode This resource is paginated by 30 items

settings Params

Param name Description
dash_id optional . Must be String

The dash id or slug

sort optional . Must be one of: id, dash_id, user_id, repo_uuid, repo_url, final_mark, created_at, updated_at.

The sort field. Sorted by id desc by default.

Example:

To sort on dashes users 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, dash_id, user_id, repo_uuid, repo_url, final_mark, created_at, updated_at.

Filtering on one or more fields

Example:

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

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

Filterable fields:
  • id (standard field)
  • dash_id (standard field)
  • user_id (standard field)
  • repo_uuid (standard field)
  • repo_url (standard field)
  • final_mark (standard field)
  • created_at (standard field)
  • updated_at (standard field)
range optional . Must be one of: id, dash_id, user_id, repo_uuid, repo_url, final_mark, created_at, updated_at.

Select on a particular range

Example:

To range on dashes users with the updated_at field between min_value and max_value:

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

Rangeable fields:
  • id
  • dash_id
  • user_id
  • repo_uuid
  • repo_url
  • final_mark
  • 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/dashes_users
200
[
  {
    "id": 1,
    "dash_id": 1,
    "user_id": 6,
    "repo_url": null,
    "repo_uuid": null,
    "final_mark": null
  }
]
curl  -H "Authorization: Bearer YOUR_ACCESS_TOKEN" "https://api.intra.42.fr/v2/dashes_users"

[
  {
    "id": 1,
    "dash_id": 1,
    "user_id": 6,
    "repo_url": null,
    "repo_uuid": null,
    "final_mark": null
  }
]
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/dashes_users")
response.status
# => 200
response.parsed
# => [{"id"=>1, "dash_id"=>1, "user_id"=>6, "repo_url"=>nil, "repo_uuid"=>nil, "final_mark"=>nil}]