Get the license pool details of an existing MSSP
GET/api/v1/mssp/:mssp-id/license-pool
x-public: "true"
Returns the details of an existing MSSP.
Request
Path Parameters
mssp-id stringrequired
the id of the MSSP of interest
Responses
- 200
- 404
- 429
OK
- application/json; charset=UTF-8
- Schema
- Example (from schema)
Schema
- Array [
- Array [
- ]
- ]
value object[]
licensePoolId string
poolName string
serialNumber string
msspId string
totalCredits int32
unallocatedCredits int32
startDate int64
endDate int64
tenantLicenses object[]
tenantLicenseId string
serialNumber string
licensePoolId string
allocatedCredits int32
startDate int64
endDate int64
nextPageToken string
{
"value": [
{
"licensePoolId": "string",
"poolName": "string",
"serialNumber": "string",
"msspId": "string",
"totalCredits": 0,
"unallocatedCredits": 0,
"startDate": 0,
"endDate": 0,
"tenantLicenses": [
{
"tenantLicenseId": "string",
"serialNumber": "string",
"licensePoolId": "string",
"allocatedCredits": 0,
"startDate": 0,
"endDate": 0
}
]
}
],
"nextPageToken": "string"
}
The MSSP does not exist
- application/json
- Schema
- Example (from schema)
Schema
error objectrequired
code stringrequired
message stringrequired
target string
details undefined[]
{
"error": {
"code": "string",
"message": "string",
"target": "string",
"details": [
null
]
}
}
Rate limiting error
- application/json
- Schema
- Example (from schema)
Schema
error objectrequired
code stringrequired
message stringrequired
target string
details undefined[]
{
"error": {
"code": "string",
"message": "string",
"target": "string",
"details": [
null
]
}
}
Loading...