File tree Expand file tree Collapse file tree 2 files changed +9
-4
lines changed
src/main/java/com/datadog/api/client/v2/api Expand file tree Collapse file tree 2 files changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -79176,8 +79176,10 @@ paths:
7917679176 schema:
7917779177 example: 3653d3c6-0c75-11ea-ad28-fb5701eabc7d
7917879178 type: string
79179- - description: Retrieves the on-call user at the given timestamp (ISO-8601).
79180- Defaults to the current time if omitted."
79179+ - description: Retrieves the on-call user at the given timestamp in RFC3339
79180+ format (for example, `2025-05-07T02:53:01Z` or `2025-05-07T02:53:01+00:00`).
79181+ When using timezone offsets with `+` or `-`, ensure proper URL encoding
79182+ (`+` should be encoded as `%2B`). Defaults to the current time if omitted.
7918179183 in: query
7918279184 name: filter[at_ts]
7918379185 schema:
Original file line number Diff line number Diff line change @@ -2005,8 +2005,11 @@ public GetScheduleOnCallUserOptionalParameters include(String include) {
20052005 /**
20062006 * Set filterAtTs.
20072007 *
2008- * @param filterAtTs Retrieves the on-call user at the given timestamp (ISO-8601). Defaults to
2009- * the current time if omitted." (optional)
2008+ * @param filterAtTs Retrieves the on-call user at the given timestamp in RFC3339 format (for
2009+ * example, <code>2025-05-07T02:53:01Z</code> or <code>2025-05-07T02:53:01+00:00</code>).
2010+ * When using timezone offsets with <code>+</code> or <code>-</code>, ensure proper URL
2011+ * encoding (<code>+</code> should be encoded as <code>%2B</code>). Defaults to the current
2012+ * time if omitted. (optional)
20102013 * @return GetScheduleOnCallUserOptionalParameters
20112014 */
20122015 public GetScheduleOnCallUserOptionalParameters filterAtTs (String filterAtTs ) {
You can’t perform that action at this time.
0 commit comments