Return the achievement specified by the :id parameter

settings Params

Param name Description
id required . Must be String

The requested id

GET /v2/achievements_users/105
200
{
  "id": 105,
  "user_id": 105,
  "login": "yodyoda2",
  "url": "https://api.intra.42.fr/v2/users/yodyoda2",
  "created_at": "2017-11-22T13:41:22.217Z"
}
curl  -H "Authorization: Bearer YOUR_ACCESS_TOKEN" "https://api.intra.42.fr/v2/achievements_users/105"

{
  "id": 105,
  "user_id": 105,
  "login": "yodyoda2",
  "url": "https://api.intra.42.fr/v2/users/yodyoda2",
  "created_at": "2017-11-22T13:41:22.217Z"
}
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/achievements_users/105")
response.status
# => 200
response.parsed
# => {"id"=>105, "user_id"=>105, "login"=>"yodyoda2", "url"=>"https://api.intra.42.fr/v2/users/yodyoda2", "created_at"=>"2017-11-22T13:41:22.217Z"}