overrides
Overview
Name | overrides |
Type | Resource |
Id | pagerduty.schedules.overrides |
Fields
Name | Datatype | Description |
---|---|---|
id | string | |
_id | string | |
end | string | The end date and time for the override. |
html_url | string | a URL at which the entity is uniquely displayed in the Web app |
self | string | the API show URL at which the object is accessible |
start | string | The start date and time for the override. |
summary | string | A short-form, server-generated string that provides succinct, important information about an object suitable for primary labeling of an entity in a client. In many cases, this will be identical to name , though it is not intended to be an identifier. |
type | string | A string that determines the schema of the object. This must be the standard name for the entity, suffixed by _reference if the object is a reference. |
user | object |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list_schedule_overrides | SELECT | id, since, until | List overrides for a given time range. A Schedule determines the time periods that users are On-Call. For more information see the API Concepts Document Scoped OAuth requires: schedules.read |
create_schedule_override | INSERT | id | Create one or more overrides, each for a specific user covering a specified time range. If you create an override on top of an existing override, the last created override will have priority. A Schedule determines the time periods that users are On-Call. Note: An older implementation of this endpoint only supported creating a single ocverride per request. That functionality is still supported, but deprecated and may be removed in the future. For more information see the API Concepts Document Scoped OAuth requires: schedules.write |
delete_schedule_override | DELETE | id, override_id | Remove an override. You cannot remove a past override. If the override start time is before the current time, but the end time is after the current time, the override will be truncated to the current time. If the override is truncated, the status code will be 200 OK, as opposed to a 204 No Content for a successful delete. A Schedule determines the time periods that users are On-Call. For more information see the API Concepts Document Scoped OAuth requires: schedules.write |
_list_schedule_overrides | EXEC | id, since, until | List overrides for a given time range. A Schedule determines the time periods that users are On-Call. For more information see the API Concepts Document Scoped OAuth requires: schedules.read |