Skip to main content
GET
/
v1
/
qualification-results
Computed qualification results for the token subject
curl --request GET \
  --url https://api.natecosmic.com/v1/qualification-results \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "organization_member_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "qualification_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "status": "qualified",
      "met_requirement_count": 123,
      "total_requirement_count": 123,
      "missing_certification_type_ids": [
        "3c90c3cc-0d44-4b50-8888-8dd25736052a"
      ],
      "evaluated_at": "2023-11-07T05:31:56Z"
    }
  ],
  "page": {
    "next_cursor": "<string>",
    "has_more": true
  }
}

Authorizations

Authorization
string
header
required

Send the access token as a bearer credential. Available scopes: certification_records:read, certification_records:write, certification_types:read, certification_types:write, job_roles:read, job_roles:write, organization_members:read, organization_members:write, organizations:read, organizations:write, qualifications:read, qualifications:write. The scope query parameter on the OAuth authorize URL (for example openid, email, profile) only affects sign-in and identity; it is separate from these API scopes, which are configured per app in the developer portal and returned by GET /v1/me.

Query Parameters

limit
integer
default:50

Page size

Required range: 1 <= x <= 200
cursor
string

Opaque pagination cursor from a previous list response

Response

Paged member qualification results

data
object[]
required
page
object
required