Skip to main content
GET
/
v1
/
sso
/
authorize
Get Authorization Code (ST)
curl --request GET \
  --url https://api.runly.pro/v1/sso/authorize \
  --header 'Authorization: Bearer <token>'
{
  "status": {
    "code": 200,
    "message": "OK",
    "trace_id": "tr_sso_auth"
  },
  "data": {
    "code": "st_xyz789",
    "expires_in": 300
  },
  "usage": {
    "latency_ms": 20
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

app_id
string
required

Response

200 - application/json

Authorization Result

status
object
required
data
object
output
object
usage
object