Skip to main content
GET
/
customer
/
v2
/
licenses
List Licenses
curl --request GET \
  --url https://orbitflare.com/api/customer/v2/licenses \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "<string>",
  "data": {
    "licenses": [
      {
        "license_key": "<string>",
        "issued_date": "2023-11-07T05:31:56Z",
        "renewal_date": "2023-11-07T05:31:56Z",
        "status": "<string>",
        "allowed_locations": [
          {
            "id": 123,
            "name": "<string>"
          }
        ],
        "product_name": "<string>"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Bearer token from device or wallet auth

Response

Licenses retrieved.

success
boolean
Example:

true

message
string
data
object