Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -78234,8 +78234,10 @@ paths:
schema:
example: 3653d3c6-0c75-11ea-ad28-fb5701eabc7d
type: string
- description: Retrieves the on-call user at the given timestamp (ISO-8601).
Defaults to the current time if omitted."
- description: Retrieves the on-call user at the given timestamp in RFC3339
format (for example, `2025-05-07T02:53:01Z` or `2025-05-07T02:53:01+00:00`).
When using timezone offsets with `+` or `-`, ensure proper URL encoding
(`+` should be encoded as `%2B`). Defaults to the current time if omitted.
in: query
name: filter[at_ts]
schema:
Expand Down
2 changes: 1 addition & 1 deletion services/on_call/src/v2/OnCallApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2657,7 +2657,7 @@ export interface OnCallApiGetScheduleOnCallUserRequest {
*/
include?: string;
/**
* Retrieves the on-call user at the given timestamp (ISO-8601). Defaults to the current time if omitted."
* Retrieves the on-call user at the given timestamp in RFC3339 format (for example, `2025-05-07T02:53:01Z` or `2025-05-07T02:53:01+00:00`). When using timezone offsets with `+` or `-`, ensure proper URL encoding (`+` should be encoded as `%2B`). Defaults to the current time if omitted.
* @type string
*/
filterAtTs?: string;
Expand Down
Loading