List license details
GET/subscription/v1/licenses
Retrieve all details for licenses allocated to the TSG identified by the access token
used to authorize this call. Use the name
parameter to specify details about a specific
license.
Request
Query Parameters
license_id string
Unique identifier assigned to the license that you want to examine.
Responses
- 200
Successful response - returns claimed license
.
- application/json
- Schema
- Example (from schema)
- get_claimed_licenses
Schema
- Array [
- Array [
- ]
- ]
app_id boolean
claim_at string
claim_by string
license_id string
licenses object[]
app_id string
license_expiry string
license_type string
purchased_size string
remaining_size string
[
{
"app_id": true,
"claim_at": "string",
"claim_by": "string",
"license_id": "string",
"licenses": [
{
"app_id": "string",
"license_expiry": "string",
"license_type": "string",
"purchased_size": "string",
"remaining_size": "string"
}
]
}
]
[
{
"app_id": "prisma_access",
"claim_at": "2022-11-03 21:08:03.891000+00:00",
"claim_by": "usr@abc.com",
"license_id": 123456789,
"licenses": [
{
"app_id": "prisma_access_edition",
"license_expiration": "2023-01-03 02:06:10",
"license_type": "GBL-SKU",
"purchased_size": 1000,
"remaining_size": 1000
},
{
"app_id": "prisma_access_edition",
"license_expiration": "2023-01-03 02:06:10",
"license_type": "GBL-SKU",
"purchased_size": 1000,
"remaining_size": 1000
}
]
},
{
"app_id": "logging_service",
"claim_at": "2022-11-03 21:08:03.891000+00:00",
"claim_by": "usr@abc.com",
"license_id": 123456789,
"licenses": [
{
"app_id": "logging_service",
"license_expiration": "2023-01-03 02:06:10",
"license_type": "GBL-SKU",
"purchased_size": 1000,
"remaining_size": 1000
}
]
}
]
Loading...