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

# Create a new certification

> Adds a new certification to the user's resume as specified in the resume id.
If a `base` is provided as resume id, the certification is added to the base resume.



## OpenAPI

````yaml post /resume/{resume_id}/certification/
openapi: 3.0.3
info:
  title: Letraz Backend Server
  version: 0.1.0
  description: >-
    This is the backend service repository of Letraz. Create tailored resumes
    for every job application effortlessly with Letraz. Our AI-powered tool
    helps you stand out by automatically optimizing your resume for ATS and
    recruiters, ensuring your skills and experience match the job's
    requirements.
servers:
  - url: https://api.letraz.app/api/v1
    description: Production Server
  - url: http://localhost:8000/api/v1
    description: Local Development Server
security: []
tags:
  - name: Core APIs
    description: Core APIs for Letraz Backend
  - name: Waitlist
    description: >-
      Mange waitlist, signups, retrieve waitlist and everything related to
      waitlist
  - name: User
    description: Get or update user details of currently logged in user
  - name: Job object
    description: >-
      Manage job objects, retrieve job objects and everything related to job
      objects
  - name: Resume object
    description: >-
      Manage resume objects, retrieve resume objects and everything related to
      resume objects
  - name: Education object
    description: >-
      Manage education objects, retrieve education objects and everything
      related to education objects
  - name: Experience object
    description: >-
      Manage experience objects, retrieve experience objects and everything
      related to experience objects
paths:
  /resume/{resume_id}/certification/:
    post:
      tags:
        - Certification object
      summary: Create a new certification
      description: >-
        Adds a new certification to the user's resume as specified in the resume
        id.

        If a `base` is provided as resume id, the certification is added to the
        base resume.
      operationId: resume_certification_create
      parameters:
        - in: path
          name: resume_id
          schema:
            type: string
          description: >-
            Resume ID of the resume the certification belongs to. If you want to
            interact with the base resume certification, just put `base` in here
          required: true
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CertificationUpsert'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/CertificationUpsert'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/CertificationUpsert'
        required: true
      responses:
        '201':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Certification'
          description: ''
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorEnvelope'
          description: ''
      security:
        - basicAuth: []
        - cookieAuth: []
        - cookieAuth: []
components:
  schemas:
    CertificationUpsert:
      type: object
      properties:
        id:
          type: string
          readOnly: true
        name:
          type: string
          description: Name of the certification.
          maxLength: 255
        issuing_organization:
          type: string
          nullable: true
          maxLength: 255
        issue_date:
          type: string
          format: date
          nullable: true
          description: Date when the certification was issued.
        credential_url:
          type: string
          format: uri
          nullable: true
          description: Link to the certification credential.
          maxLength: 200
        created_at:
          type: string
          format: date-time
          readOnly: true
          description: Timestamp when the certification was first created.
        updated_at:
          type: string
          format: date-time
          readOnly: true
          description: Timestamp when the certification was last updated.
        user:
          type: string
          description: The user who owns this certification
        resume_section:
          type: string
          format: uuid
          description: The unique identifier for the resume section entry.
      required:
        - created_at
        - id
        - name
        - resume_section
        - updated_at
        - user
    Certification:
      type: object
      properties:
        id:
          type: string
          readOnly: true
        resume_section:
          type: string
          readOnly: true
        name:
          type: string
          description: Name of the certification.
          maxLength: 255
        issuing_organization:
          type: string
          nullable: true
          maxLength: 255
        issue_date:
          type: string
          format: date
          nullable: true
          description: Date when the certification was issued.
        credential_url:
          type: string
          format: uri
          nullable: true
          description: Link to the certification credential.
          maxLength: 200
        created_at:
          type: string
          format: date-time
          readOnly: true
          description: Timestamp when the certification was first created.
        updated_at:
          type: string
          format: date-time
          readOnly: true
          description: Timestamp when the certification was last updated.
        user:
          type: string
          description: The user who owns this certification
      required:
        - created_at
        - id
        - name
        - resume_section
        - updated_at
        - user
    ErrorEnvelope:
      type: object
      properties:
        error:
          $ref: '#/components/schemas/Error'
      required:
        - error
    Error:
      type: object
      properties:
        uuid:
          type: string
          format: uuid
          description: >-
            The unique identifier for the error response. This is useful for
            tracking the error in the logs and in Sentry if it is enabled.
        code:
          type: string
          description: >-
            The error code that is unique to the error type. This can be used to
            identify the error type and can be used for debugging.
        message:
          type: string
          description: >-
            The error message that is human readable and can be used to
            understand the error. Usually fit to be displayed to the user.
        details:
          type: string
          description: >-
            The error details that can be used to understand the error in more
            detail. This can be used for debugging purposes.
        extra:
          type: string
          description: >-
            The extra data that can be used to understand the error in more
            detail. This is usually not displayed to the user and might include
            stacktrace and sensitive information.
      required:
        - code
        - details
        - extra
        - message
        - uuid
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic
    cookieAuth:
      type: apiKey
      in: cookie
      name: sessionid

````