GET /v2/coalitions/:coalition_id/users
Return all the users of the given Coalition
GET /v2/dashes/:dash_id/users
Return all the users of the given Dash
GET /v2/events/:event_id/users
Return all the users of the given Event
GET /v2/accreditations/:accreditation_id/users
Return all the users of the given Accreditation
GET /v2/teams/:team_id/users
Return all the users of the given Team
GET /v2/projects/:project_id/users
Return all the users of the given Project
GET /v2/partnerships/:partnership_id/users
Return all the users of the given Partnership
GET /v2/expertises/:expertise_id/users
Return all the users of the given Expertise
GET /v2/users
Return all the users
GET /v2/cursus/:cursus_id/users
Return all the users of the given Cursus
GET /v2/campus/:campus_id/users
Return all the users of the given Campus
GET /v2/achievements/:achievement_id/users
Return all the users of the given Achievement
GET /v2/titles/:title_id/users
Return all the users of the given Title
GET /v2/quests/:quest_id/users
Return all the users of the given Quest
GET /v2/groups/:group_id/users
Return all the users of the given Group
settings Params
Param name | Description |
---|---|
coalition_id |
optional
. Must be String
The coalition id or slug |
dash_id |
optional
. Must be String
The dash id or slug |
event_id |
optional
. Must be String
The event id |
accreditation_id |
optional
. Must be String
The accreditation id |
team_id |
optional
. Must be String
The team id |
project_id |
optional
. Must be String
The project id or slug |
partnership_id |
optional
. Must be String
The partnership id or slug |
expertise_id |
optional
. Must be String
The expertise id or slug |
cursus_id |
optional
. Must be String
The cursus id or slug |
campus_id |
optional
. Must be String
The campus id or slug |
achievement_id |
optional
. Must be String
The achievement id or slug |
title_id |
optional
. Must be String
The title id or slug |
quest_id |
optional
. Must be String
The quest id or slug |
group_id |
optional
. Must be String
The group id |
sort |
optional
. Must be one of: id , login , email , encrypted_password , reset_password_token , reset_password_sent_at , created_at , updated_at , image , first_name , last_name , pool_year , pool_month , kind , status , otp_secret_key , otp_tmp , otp_activated , otp_backup_passwords , slack_team , slack_login , slack_mail , slack_code_validation , slack_validated_at , token_id , email_stop , linked_user_id , usual_first_name , last_seen_at , password_changed_at , encrypted_single_usage_password , first_warn_anon_sent_at , second_warn_anon_sent_at , alumni_token , alumnized_at .
The sort field. Sorted by id desc by default. MoreExample:To sort on users on the fields alumni_token on a descending order and alumnized_at on a ascending order: ...&sort=-alumni_token,alumnized_at |
filter |
optional
. Must be one of: id , login , email , created_at , updated_at , pool_year , pool_month , kind , status , primary_campus_id , first_name , last_name , alumni? , staff? .
Filtering on one or more fields MoreExample:
To filter on users with the
...&filter[id]=a_value,another_value Filterable fields:
|
range |
optional
. Must be one of: id , login , email , created_at , updated_at , pool_year , pool_month , kind , status .
Select on a particular range MoreExample:
To range on users with the
...&range[status]=min_value,max_value Rangeable fields:
|
Examples
GET /v2/users
200
[
{
"id": 126,
"login": "darthcae",
"url": "https://api.intra.42.fr/v2/users/darthcae"
},
{
"id": 125,
"login": "sebulseb",
"url": "https://api.intra.42.fr/v2/users/sebulseb"
},
{
"id": 124,
"login": "hsolo2",
"url": "https://api.intra.42.fr/v2/users/hsolo2"
}
]
curl -H "Authorization: Bearer YOUR_ACCESS_TOKEN" "https://api.intra.42.fr/v2/users"
[
{
"id": 126,
"login": "darthcae",
"url": "https://api.intra.42.fr/v2/users/darthcae"
},
{
"id": 125,
"login": "sebulseb",
"url": "https://api.intra.42.fr/v2/users/sebulseb"
},
{
"id": 124,
"login": "hsolo2",
"url": "https://api.intra.42.fr/v2/users/hsolo2"
}
]
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/users")
response.status
# => 200
response.parsed
# => [{"id"=>126, "login"=>"darthcae", "url"=>"https://api.intra.42.fr/v2/users/darthcae"}, {"id"=>125, "login"=>"sebulseb", "url"=>"https://api.intra.42.fr/v2/users/sebulseb"}, {"id"=>124, "login"=>"hsolo2", "url"=>"https://api.intra.42.fr/v2/users/hsolo2"}]