license_allocations
Creates, updates, deletes, gets or lists a license_allocations resource.
Overview
| Name | license_allocations |
| Type | Resource |
| Id | pagerduty.licenses.license_allocations |
Fields
The following fields are returned by SELECT queries:
- list
License allocations to Users within your Account
| Name | Datatype | Description |
|---|---|---|
allocated_at | string (date-time) | Indicates the date and time the License was allocated to the User |
license | object | |
user | object | (opaque JSON object) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | limit, offset | List the Licenses allocated to Users within your Account<br /><br />Scoped OAuth requires: licenses.read<br /> |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
limit | integer | The number of results per page. |
offset | integer | Offset to start pagination search results. |
SELECT examples
- list
List the Licenses allocated to Users within your Account<br /><br />Scoped OAuth requires: licenses.read<br />
SELECT
allocated_at,
license,
user
FROM pagerduty.licenses.license_allocations
WHERE limit = '{{ limit }}'
AND offset = '{{ offset }}'
;