Returns all the licenses of a current customer.
Basic Parameters
Parameter | Description |
---|
Assigned | Fetches only assigned licenses if set to true and unassigned is set to false. If set to null all licenses will be fetched. |
Advanced Parameters
Parameter | Description |
---|
Assignee Email | Assignee email to filter licenses. |
Page | Current page number (page numbering starts with 1). |
Per Page | The number of items to return per page. |
Product Code | Product code to filter licenses. |
Example Output
[
{
"licenseId": "<string>",
"product": {
"code": "<string>",
"name": "<string>"
},
"assignee": {
"key": "<string>",
"type": "<string>"
},
"perpetual": {
"isOutdated": false
},
"team": {
"id": 1786870,
"name": "<string>"
},
"isTransferableBetweenTeams": true,
"isTrial": false,
"isSuspended": false,
"isAvailableToAssign": false
},
{
"licenseId": "<string>",
"product": {
"code": "<string>",
"name": "<string>"
},
"assignee": {
"key": "<string>",
"type": "<string>"
},
"perpetual": {
"isOutdated": false
},
"team": {
"id": 1977373,
"name": "<string>"
},
"isTransferableBetweenTeams": true,
"isTrial": false,
"isSuspended": false,
"isAvailableToAssign": false
}
]
Workflow Library Example
Get Licenses for Customer with Jetbrains and Send Results Via Email
Responses are generated using AI and may contain mistakes.