# Open Locker With Access Code

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /locker/open:
    post:
      summary: Open Locker With Access Code
      deprecated: false
      description: Get payload and payload auth for locker
      tags:
        - Harbor App Engine
      parameters: []
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                access_code:
                  type: string
                sub_organization_id:
                  type: string
                order_reference:
                  type: string
                  nullable: true
                location_id:
                  type: integer
              x-apidog-orders:
                - access_code
                - location_id
                - sub_organization_id
                - order_reference
              required:
                - access_code
                - sub_organization_id
                - location_id
            examples: {}
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  accessCodeId:
                    type: string
                  payload:
                    type: string
                  payloadAuth:
                    type: string
                required:
                  - accessCodeId
                  - payload
                  - payloadAuth
                x-apidog-orders:
                  - accessCodeId
                  - payload
                  - payloadAuth
          headers: {}
          x-apidog-name: Success
      security: []
      x-apidog-folder: Harbor App Engine
      x-apidog-status: testing
      x-run-in-apidog: https://app.apidog.com/web/project/1131887/apis/api-24487762-run
components:
  schemas: {}
  securitySchemes: {}
servers: []
security: []

```
