Harbor App Engine
  1. Harbor App Engine
Harbor App Engine
  • Harbor App Engine
    • Generate API key
      POST
    • Get All APIs Key
      GET
    • Delete API key
      DELETE
    • Get All Access Codes Of A Sub-Organization
      GET
    • Get All Access Codes Of All Lockers
      GET
    • Get All Access Codes Of A Locker
      GET
    • Create Access Code For A Locker
      POST
    • Open Locker With Access Code
      POST
    • Close Locker
      POST
    • Remove Access Code
      PATCH
  1. Harbor App Engine

Generate API key

POST
/auth/api-key

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Body Params application/json

Example
{
    "client_id": "string",
    "client_secret": "string",
    "organization_id": "string",
    "sub_organization_id": "string"
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/auth/api-key' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "client_id": "string",
    "client_secret": "string",
    "organization_id": "string",
    "sub_organization_id": "string"
}'

Responses

🟢200Success
application/json
Body

Example
{
    "api_key": "string"
}
Modified at 2025-11-19 17:35:20
Previous
Harbor App Engine
Next
Get All APIs Key
Built with