> ## Documentation Index
> Fetch the complete documentation index at: https://docs.natecosmic.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get certification in organization



## OpenAPI

````yaml /openapi.json get /v1/organizations/{organization_id}/certifications/{certification_id}
openapi: 3.0.3
info:
  title: COSMIC Public API
  version: 0.1.0
  description: >-
    Telecom safety operations API for organizations, members, certifications,
    job roles, and qualifications.


    **Public preview:** this API layer is in public preview. Endpoint structure
    is expected to be mostly stable, but response fields, edge cases, and
    reliability are still subject to change.


    **Discovery:** use `GET /v1/organizations` and `GET
    /v1/organizations/{organization_id}/organization-members` to list orgs and
    members.


    **List / sync:** use `limit`, `cursor`, and `updated_after` (exclusive:
    records with `updated_at` strictly after the given timestamp). List ordering
    is resource-specific and deterministic.


    **Writes:** create endpoints for sync-oriented resources accept
    `Idempotency-Key` and may use `external_id` / `external_source` on
    certifications (and optionally members).
servers:
  - url: https://api.natecosmic.com
security: []
tags:
  - name: Me
    description: Token identity and granted API scopes
  - name: Certifications
    description: User-scoped certification records (token subject)
  - name: Organizations
    description: Tenants and org-scoped resources
  - name: Definitions
    description: Global read discovery for types, roles, qualifications
paths:
  /v1/organizations/{organization_id}/certifications/{certification_id}:
    get:
      tags:
        - Organizations
      summary: Get certification in organization
      parameters:
        - $ref: '#/components/parameters/OrganizationId'
        - $ref: '#/components/parameters/CertificationId'
      responses:
        '200':
          description: Certification
          content:
            application/json:
              schema:
                type: object
                required:
                  - data
                properties:
                  data:
                    $ref: '#/components/schemas/Certification'
        '401':
          description: Missing or invalid bearer token
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorBody'
        '403':
          description: >-
            Forbidden: missing required scope on the token, cannot access the
            resource or organization, or the integration requires re-approval
            after scope changes in the developer portal
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorBody'
        '404':
          description: Resource not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorBody'
      security:
        - bearerAuth: []
components:
  parameters:
    OrganizationId:
      name: organization_id
      in: path
      required: true
      schema:
        type: string
        format: uuid
      description: Organization identifier
    CertificationId:
      name: certification_id
      in: path
      required: true
      schema:
        type: string
        format: uuid
      description: Certification record identifier
  schemas:
    Certification:
      type: object
      properties:
        id:
          type: string
          format: uuid
        organization_id:
          type: string
          format: uuid
        organization_member_id:
          type: string
          format: uuid
        user_id:
          type: string
          format: uuid
          nullable: true
        external_id:
          type: string
          nullable: true
        external_source:
          type: string
          nullable: true
        certification_type_id:
          type: string
          format: uuid
        lifecycle_status:
          type: string
          enum:
            - active
            - revoked
            - archived
        source:
          type: string
          enum:
            - manual
            - import
            - api
            - self-reported
        issued_on:
          type: string
          format: date
          nullable: true
        expires_on:
          type: string
          format: date
          nullable: true
        issuer_name:
          type: string
          nullable: true
        serial_number:
          type: string
          nullable: true
        verification_status:
          type: string
          enum:
            - unverified
            - pending
            - verified
            - failed
        validity_status:
          type: string
          enum:
            - valid
            - expiring
            - expired
            - unknown
        verification_method:
          type: string
          nullable: true
        last_verified_at:
          type: string
          format: date-time
          nullable: true
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
        certification_type:
          $ref: '#/components/schemas/CertificationTypeSummary'
    ErrorBody:
      type: object
      required:
        - error
      properties:
        error:
          type: object
          required:
            - code
            - message
          properties:
            code:
              type: string
              example: validation_error
            message:
              type: string
            details:
              type: object
              additionalProperties: true
            request_id:
              type: string
    CertificationTypeSummary:
      type: object
      properties:
        id:
          type: string
          format: uuid
        slug:
          type: string
        title:
          type: string
        status:
          type: string
          enum:
            - active
            - archived
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: 'JWT access token. Send `Authorization: Bearer <token>`.'

````