Skip to main content
GET
/
v1
/
certifications
List certifications for the authenticated principal (legacy)
curl --request GET \
  --url https://api.natecosmic.com/v1/certifications \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "organization_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "organization_member_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "external_id": "<string>",
      "external_source": "<string>",
      "certification_type_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "lifecycle_status": "active",
      "source": "manual",
      "issued_on": "2023-12-25",
      "expires_on": "2023-12-25",
      "issuer_name": "<string>",
      "serial_number": "<string>",
      "verification_status": "unverified",
      "validity_status": "valid",
      "verification_method": "<string>",
      "last_verified_at": "2023-11-07T05:31:56Z",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z",
      "certification_type": {
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "slug": "<string>",
        "title": "<string>",
        "status": "active"
      }
    }
  ]
}

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.

Response

Unpaged list of certifications for the current user

data
object[]
required