Skip to main content
POST
/
customer
/
v2
/
auth
/
device
/
code
Request Device Code
curl --request POST \
  --url https://orbitflare.com/api/customer/v2/auth/device/code \
  --header 'X-ORBIT-KEY: <api-key>'
{
  "success": true,
  "data": {
    "device_code": "<string>",
    "user_code": "<string>",
    "verification_uri": "<string>",
    "expires_in": 123,
    "interval": 123
  }
}

Authorizations

X-ORBIT-KEY
string
header
required

API key for v1 and v2 (when not using Bearer token)

Response

200 - application/json

Device code created successfully.

success
boolean
Example:

true

data
object