Morpheus API Gateway LogoMorpheus API Gateway
Auth

Refresh Token

Get a new access token using a refresh token.

POST
/api/v1/auth/refresh

Authorization

AuthorizationRequiredBearer <token>

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

In: header

Request Body

application/jsonRequired
refresh_tokenRequiredRefresh Token

Response Body

Schema for token response.

TypeScript Definitions

Use the response body type in TypeScript.

access_tokenRequiredAccess Token
refresh_tokenRequiredRefresh Token
token_typeToken Type
Default: "bearer"

Validation Error

TypeScript Definitions

Use the response body type in TypeScript.

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

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

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

func main() {
  url := "https://api.mor.org/api/v1/auth/refresh"
  body := strings.NewReader(`{
    "refresh_token": "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/refresh"
body = {
  "refresh_token": "string"
}
response = requests.request("POST", url, json = body, headers = {
  "Authorization": "Bearer <token>",
  "Content-Type": "application/json"
})

print(response.text)
{
  "access_token": "string",
  "refresh_token": "string",
  "token_type": "bearer"
}
{
  "detail": [
    {
      "loc": [
        "string"
      ],
      "msg": "string",
      "type": "string"
    }
  ]
}

How is this guide?