v1

latestOpenAPI 3.0.12026-07-24283883639.5 KB
Awards

Get A Specific User Award

This endpoint retrieves the details of a specific award that has been awarded to a particular user. <h3>Required Scope</h3>awards:read or awards:write

get/api/v2/awards/{id}

Path parameters

idstring required

The ID of the award to retrieve.

Response

Success

Example response

{
  "data": {
    "type": "awards",
    "id": "y3NZL",
    "attributes": {
      "title": "Eater of Bugs",
      "issued-by": "Degreed"
    },
    "relationships": [
      {
        "user": {
          "data": {
            "id": "Bz64P",
            "type": "users"
          }
        }
      }
    ]
  }
}