Skip to main content
POST
/
auth
/
admin
/
token
/
refresh
Refresh admin access token
curl --request POST \
  --url https://api.agg.market/auth/admin/token/refresh \
  --header 'Content-Type: application/json' \
  --header 'x-app-id: <api-key>' \
  --data '
{
  "refreshToken": "<string>"
}
'
{
  "accessToken": "<string>",
  "refreshToken": "<string>",
  "principal": {
    "id": "<string>"
  }
}

Authorizations

x-app-id
string
header
required

Your application ID. Required for all app-tier and user-tier routes.

Body

application/json

Body

refreshToken
string
required

Response

200

accessToken
string
required
refreshToken
string
required
principal
object
required