Morpheus API Gateway LogoMorpheus API Gateway
Auth

Create Api Key

Create a new API key for the current user. Requires JWT Bearer authentication with the token received from the login endpoint.

POST
/api/v1/auth/keys

Authorization

AuthorizationRequiredBearer <token>

Enter the JWT token you received from the login endpoint (without 'Bearer' prefix)

In: header

Request Body

application/jsonRequired
namestring | null | null

Response Body

Schema for API key response.

TypeScript Definitions

Use the response body type in TypeScript.

keyRequiredKey
key_prefixRequiredKey Prefix
namestring | null | null

Validation Error

TypeScript Definitions

Use the response body type in TypeScript.

detailDetail
curl -X POST "https://api.mor.org/api/v1/auth/keys" \
  -H "Authorization: Bearer <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "string"
  }'
const body = JSON.stringify({
  "name": "string"
})

fetch("https://api.mor.org/api/v1/auth/keys", {
  headers: {
    "Authorization": "Bearer <token>"
  },
  body
})
package main

import (
  "fmt"
  "net/http"
  "io/ioutil"
  "strings"
)

func main() {
  url := "https://api.mor.org/api/v1/auth/keys"
  body := strings.NewReader(`{
    "name": "string"
  }`)
  req, _ := http.NewRequest("POST", url, body)
  req.Header.Add("Authorization", "Bearer <token>")
  req.Header.Add("Content-Type", "application/json")
  res, _ := http.DefaultClient.Do(req)
  defer res.Body.Close()
  body, _ := ioutil.ReadAll(res.Body)

  fmt.Println(res)
  fmt.Println(string(body))
}
import requests

url = "https://api.mor.org/api/v1/auth/keys"
body = {
  "name": "string"
}
response = requests.request("POST", url, json = body, headers = {
  "Authorization": "Bearer <token>",
  "Content-Type": "application/json"
})

print(response.text)
{
  "key": "string",
  "key_prefix": "string",
  "name": "string"
}
{
  "detail": [
    {
      "loc": [
        "string"
      ],
      "msg": "string",
      "type": "string"
    }
  ]
}

How is this guide?