GET
/
licenses
/
{license}
curl --request GET \
  --url https://orbitflare.com/api/customer/v1/licenses/{license} \
  --header 'X-ORBIT-KEY: <api-key>'
{
  "error": false,
  "license": {
    "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>",
        "urls": [
          "<string>"
        ]
      }
    ],
    "product_name": "<string>"
  },
  "message": "<string>"
}

Authorizations

X-ORBIT-KEY
string
header
required

Path Parameters

license
string
required

The license key or license identifier.

Response

200
application/json
License retrieved successfully.

The response is of type object.