Skip to content

Commit 86b9ef1

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 5d6481a of spec repo
1 parent fc65005 commit 86b9ef1

File tree

78 files changed

+1630
-208
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

78 files changed

+1630
-208
lines changed

.generated-info

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"spec_repo_commit": "d02c8a3",
3-
"generated": "2025-08-08 12:08:19.964"
2+
"spec_repo_commit": "5d6481a",
3+
"generated": "2025-08-12 11:14:24.374"
44
}

.generator/schemas/v2/openapi.yaml

Lines changed: 176 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7280,6 +7280,35 @@ components:
72807280
type:
72817281
$ref: '#/components/schemas/CaseType'
72827282
type: object
7283+
CaseComment:
7284+
description: Case comment
7285+
properties:
7286+
attributes:
7287+
$ref: '#/components/schemas/CaseCommentAttributes'
7288+
type:
7289+
$ref: '#/components/schemas/CaseResourceType'
7290+
required:
7291+
- attributes
7292+
- type
7293+
type: object
7294+
CaseCommentAttributes:
7295+
description: Case comment attributes
7296+
properties:
7297+
comment:
7298+
description: The `CaseCommentAttributes` `message`.
7299+
example: This is my comment !
7300+
type: string
7301+
required:
7302+
- comment
7303+
type: object
7304+
CaseCommentRequest:
7305+
description: Case comment request
7306+
properties:
7307+
data:
7308+
$ref: '#/components/schemas/CaseComment'
7309+
required:
7310+
- data
7311+
type: object
72837312
CaseCreate:
72847313
description: Case creation data
72857314
properties:
@@ -42538,6 +42567,120 @@ components:
4253842567
- time_zone
4253942568
- restrictions
4254042569
type: object
42570+
TimelineCell:
42571+
description: timeline cell
42572+
properties:
42573+
author:
42574+
$ref: '#/components/schemas/TimelineCellAuthor'
42575+
cell_content:
42576+
$ref: '#/components/schemas/TimelineCellContent'
42577+
created_at:
42578+
description: Timestamp of when the cell was created
42579+
format: date-time
42580+
readOnly: true
42581+
type: string
42582+
deleted_at:
42583+
description: Timestamp of when the cell was deleted
42584+
format: date-time
42585+
readOnly: true
42586+
type: string
42587+
modified_at:
42588+
description: Timestamp of when the cell was last modified
42589+
format: date-time
42590+
readOnly: true
42591+
type: string
42592+
type:
42593+
$ref: '#/components/schemas/TimelineCellType'
42594+
type: object
42595+
TimelineCellAuthor:
42596+
description: author of the timeline cell
42597+
oneOf:
42598+
- $ref: '#/components/schemas/TimelineCellAuthorUser'
42599+
TimelineCellAuthorUser:
42600+
description: timeline cell user author
42601+
properties:
42602+
content:
42603+
$ref: '#/components/schemas/TimelineCellAuthorUserContent'
42604+
type:
42605+
$ref: '#/components/schemas/TimelineCellAuthorUserType'
42606+
type: object
42607+
TimelineCellAuthorUserContent:
42608+
description: user author content.
42609+
properties:
42610+
email:
42611+
description: user email
42612+
type: string
42613+
handle:
42614+
description: user handle
42615+
type: string
42616+
id:
42617+
description: user UUID
42618+
type: string
42619+
name:
42620+
description: user name
42621+
type: string
42622+
type: object
42623+
TimelineCellAuthorUserType:
42624+
description: user author type.
42625+
enum:
42626+
- USER
42627+
example: USER
42628+
type: string
42629+
x-enum-varnames:
42630+
- USER
42631+
TimelineCellContent:
42632+
description: timeline cell content
42633+
oneOf:
42634+
- $ref: '#/components/schemas/TimelineCellContentComment'
42635+
TimelineCellContentComment:
42636+
description: comment content
42637+
properties:
42638+
message:
42639+
description: comment message
42640+
type: string
42641+
type: object
42642+
TimelineCellResource:
42643+
description: Timeline cell JSON:API resource
42644+
properties:
42645+
attributes:
42646+
$ref: '#/components/schemas/TimelineCell'
42647+
id:
42648+
description: Timeline cell's identifier
42649+
example: aeadc05e-98a8-11ec-ac2c-da7ad0900001
42650+
type: string
42651+
type:
42652+
$ref: '#/components/schemas/TimelineCellResourceType'
42653+
required:
42654+
- id
42655+
- type
42656+
- attributes
42657+
type: object
42658+
TimelineCellResourceType:
42659+
default: timeline_cell
42660+
description: Timeline cell JSON:API resource type
42661+
enum:
42662+
- timeline_cell
42663+
example: timeline_cell
42664+
type: string
42665+
x-enum-varnames:
42666+
- TIMELINE_CELL
42667+
TimelineCellType:
42668+
description: Timeline cell content type
42669+
enum:
42670+
- COMMENT
42671+
example: COMMENT
42672+
type: string
42673+
x-enum-varnames:
42674+
- COMMENT
42675+
TimelineResponse:
42676+
description: Timeline response
42677+
properties:
42678+
data:
42679+
description: The `TimelineResponse` `data`.
42680+
items:
42681+
$ref: '#/components/schemas/TimelineCellResource'
42682+
type: array
42683+
type: object
4254142684
TimeseriesFormulaQueryRequest:
4254242685
description: A request wrapper around a single timeseries query to be executed.
4254342686
properties:
@@ -47570,6 +47713,39 @@ paths:
4757047713
summary: Update case attributes
4757147714
tags:
4757247715
- Case Management
47716+
/api/v2/cases/{case_id}/comment:
47717+
post:
47718+
description: Comment case
47719+
operationId: CommentCase
47720+
parameters:
47721+
- $ref: '#/components/parameters/CaseIDPathParameter'
47722+
requestBody:
47723+
content:
47724+
application/json:
47725+
schema:
47726+
$ref: '#/components/schemas/CaseCommentRequest'
47727+
description: Case comment payload
47728+
required: true
47729+
responses:
47730+
'200':
47731+
content:
47732+
application/json:
47733+
schema:
47734+
$ref: '#/components/schemas/TimelineResponse'
47735+
description: OK
47736+
'400':
47737+
$ref: '#/components/responses/BadRequestResponse'
47738+
'401':
47739+
$ref: '#/components/responses/UnauthorizedResponse'
47740+
'403':
47741+
$ref: '#/components/responses/ForbiddenResponse'
47742+
'404':
47743+
$ref: '#/components/responses/NotFoundResponse'
47744+
'429':
47745+
$ref: '#/components/responses/TooManyRequestsResponse'
47746+
summary: Comment case
47747+
tags:
47748+
- Case Management
4757347749
/api/v2/cases/{case_id}/priority:
4757447750
post:
4757547751
description: Update case priority
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
"2025-07-21T13:52:40.919Z"
1+
"2025-08-12T11:05:35.408Z"

cassettes/v2/Case-Management_2486725080/Archive-case-returns-Bad-Request-response_3307115673/recording.har

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@
3838
"url": "https://api.datadoghq.com/api/v2/cases"
3939
},
4040
"response": {
41-
"bodySize": 838,
41+
"bodySize": 839,
4242
"content": {
4343
"mimeType": "application/vnd.api+json",
44-
"size": 838,
45-
"text": "{\"data\":{\"id\":\"6706fe66-cabd-4b22-b4c5-dd478bba421a\",\"type\":\"case\",\"attributes\":{\"attributes\":{},\"comment_count\":0,\"created_at\":\"2025-07-21T13:52:41.25066Z\",\"creation_source\":\"MANUAL\",\"custom_attributes\":{},\"description\":\"\",\"insights\":[],\"internal_id\":\"6706fe66-cabd-4b22-b4c5-dd478bba421a\",\"key\":\"DDFC-72317\",\"merge_status\":\"NOT_MERGED\",\"priority\":\"P4\",\"public_id\":\"72377\",\"status\":\"OPEN\",\"title\":\"My new case\",\"type\":\"STANDARD\",\"type_id\":\"00000000-0000-0000-0000-000000000001\"},\"relationships\":{\"created_by\":{\"data\":{\"id\":\"3ad549bf-eba0-11e9-a77a-0705486660d0\",\"type\":\"user\"}},\"project\":{\"data\":{\"id\":\"d4bbe1af-f36e-42f1-87c1-493ca35c320e\",\"type\":\"project\"}}}},\"included\":[{\"id\":\"3ad549bf-eba0-11e9-a77a-0705486660d0\",\"type\":\"user\",\"attributes\":{\"active\":true,\"email\":\"[email protected]\",\"handle\":\"[email protected]\",\"name\":\"frog\"}}]}"
44+
"size": 839,
45+
"text": "{\"data\":{\"id\":\"77547410-8537-458a-9384-dcfe251d7c7e\",\"type\":\"case\",\"attributes\":{\"attributes\":{},\"comment_count\":0,\"created_at\":\"2025-08-12T11:05:35.824748Z\",\"creation_source\":\"MANUAL\",\"custom_attributes\":{},\"description\":\"\",\"insights\":[],\"internal_id\":\"77547410-8537-458a-9384-dcfe251d7c7e\",\"key\":\"DDFC-75922\",\"merge_status\":\"NOT_MERGED\",\"priority\":\"P4\",\"public_id\":\"75982\",\"status\":\"OPEN\",\"title\":\"My new case\",\"type\":\"STANDARD\",\"type_id\":\"00000000-0000-0000-0000-000000000001\"},\"relationships\":{\"created_by\":{\"data\":{\"id\":\"3ad549bf-eba0-11e9-a77a-0705486660d0\",\"type\":\"user\"}},\"project\":{\"data\":{\"id\":\"d4bbe1af-f36e-42f1-87c1-493ca35c320e\",\"type\":\"project\"}}}},\"included\":[{\"id\":\"3ad549bf-eba0-11e9-a77a-0705486660d0\",\"type\":\"user\",\"attributes\":{\"active\":true,\"email\":\"[email protected]\",\"handle\":\"[email protected]\",\"name\":\"frog\"}}]}"
4646
},
4747
"cookies": [],
4848
"headers": [
@@ -57,11 +57,11 @@
5757
"status": 201,
5858
"statusText": "Created"
5959
},
60-
"startedDateTime": "2025-07-21T13:52:40.926Z",
61-
"time": 397
60+
"startedDateTime": "2025-08-12T11:05:35.415Z",
61+
"time": 439
6262
},
6363
{
64-
"_id": "75643134d0d3233903bf06a1fd35338d",
64+
"_id": "f878fd82be15daac32ba7b7e485a4330",
6565
"_order": 0,
6666
"cache": {},
6767
"request": {
@@ -88,7 +88,7 @@
8888
"text": "{\"data\":{\"type\":\"project\"}}"
8989
},
9090
"queryString": [],
91-
"url": "https://api.datadoghq.com/api/v2/cases/6706fe66-cabd-4b22-b4c5-dd478bba421a/archive"
91+
"url": "https://api.datadoghq.com/api/v2/cases/77547410-8537-458a-9384-dcfe251d7c7e/archive"
9292
},
9393
"response": {
9494
"bodySize": 108,
@@ -110,8 +110,8 @@
110110
"status": 400,
111111
"statusText": "Bad Request"
112112
},
113-
"startedDateTime": "2025-07-21T13:52:41.332Z",
114-
"time": 372
113+
"startedDateTime": "2025-08-12T11:05:35.864Z",
114+
"time": 384
115115
}
116116
],
117117
"pages": [],
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
"2025-07-21T13:52:41.730Z"
1+
"2025-08-12T11:05:36.261Z"

cassettes/v2/Case-Management_2486725080/Archive-case-returns-Not-Found-response_3250820290/recording.har

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@
5757
"status": 404,
5858
"statusText": "Not Found"
5959
},
60-
"startedDateTime": "2025-07-21T13:52:41.735Z",
61-
"time": 392
60+
"startedDateTime": "2025-08-12T11:05:36.264Z",
61+
"time": 397
6262
}
6363
],
6464
"pages": [],
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
"2025-07-21T13:52:42.155Z"
1+
"2025-08-12T11:05:36.670Z"

cassettes/v2/Case-Management_2486725080/Archive-case-returns-OK-response_1644289173/recording.har

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@
3838
"url": "https://api.datadoghq.com/api/v2/cases"
3939
},
4040
"response": {
41-
"bodySize": 838,
41+
"bodySize": 839,
4242
"content": {
4343
"mimeType": "application/vnd.api+json",
44-
"size": 838,
45-
"text": "{\"data\":{\"id\":\"b074b409-24f8-42ae-b545-b1486429630d\",\"type\":\"case\",\"attributes\":{\"attributes\":{},\"comment_count\":0,\"created_at\":\"2025-07-21T13:52:42.51392Z\",\"creation_source\":\"MANUAL\",\"custom_attributes\":{},\"description\":\"\",\"insights\":[],\"internal_id\":\"b074b409-24f8-42ae-b545-b1486429630d\",\"key\":\"DDFC-72318\",\"merge_status\":\"NOT_MERGED\",\"priority\":\"P4\",\"public_id\":\"72378\",\"status\":\"OPEN\",\"title\":\"My new case\",\"type\":\"STANDARD\",\"type_id\":\"00000000-0000-0000-0000-000000000001\"},\"relationships\":{\"created_by\":{\"data\":{\"id\":\"3ad549bf-eba0-11e9-a77a-0705486660d0\",\"type\":\"user\"}},\"project\":{\"data\":{\"id\":\"d4bbe1af-f36e-42f1-87c1-493ca35c320e\",\"type\":\"project\"}}}},\"included\":[{\"id\":\"3ad549bf-eba0-11e9-a77a-0705486660d0\",\"type\":\"user\",\"attributes\":{\"active\":true,\"email\":\"[email protected]\",\"handle\":\"[email protected]\",\"name\":\"frog\"}}]}"
44+
"size": 839,
45+
"text": "{\"data\":{\"id\":\"dc347aa5-0e19-44fe-9ba3-0114728a47a1\",\"type\":\"case\",\"attributes\":{\"attributes\":{},\"comment_count\":0,\"created_at\":\"2025-08-12T11:05:37.067799Z\",\"creation_source\":\"MANUAL\",\"custom_attributes\":{},\"description\":\"\",\"insights\":[],\"internal_id\":\"dc347aa5-0e19-44fe-9ba3-0114728a47a1\",\"key\":\"DDFC-75923\",\"merge_status\":\"NOT_MERGED\",\"priority\":\"P4\",\"public_id\":\"75983\",\"status\":\"OPEN\",\"title\":\"My new case\",\"type\":\"STANDARD\",\"type_id\":\"00000000-0000-0000-0000-000000000001\"},\"relationships\":{\"created_by\":{\"data\":{\"id\":\"3ad549bf-eba0-11e9-a77a-0705486660d0\",\"type\":\"user\"}},\"project\":{\"data\":{\"id\":\"d4bbe1af-f36e-42f1-87c1-493ca35c320e\",\"type\":\"project\"}}}},\"included\":[{\"id\":\"3ad549bf-eba0-11e9-a77a-0705486660d0\",\"type\":\"user\",\"attributes\":{\"active\":true,\"email\":\"[email protected]\",\"handle\":\"[email protected]\",\"name\":\"frog\"}}]}"
4646
},
4747
"cookies": [],
4848
"headers": [
@@ -57,11 +57,11 @@
5757
"status": 201,
5858
"statusText": "Created"
5959
},
60-
"startedDateTime": "2025-07-21T13:52:42.177Z",
61-
"time": 412
60+
"startedDateTime": "2025-08-12T11:05:36.673Z",
61+
"time": 400
6262
},
6363
{
64-
"_id": "f102e9889a3b0592a1d5f6e9c4d2deb8",
64+
"_id": "3dc20d754a42cb5524f5a085f9c59be2",
6565
"_order": 0,
6666
"cache": {},
6767
"request": {
@@ -88,14 +88,14 @@
8888
"text": "{\"data\":{\"type\":\"case\"}}"
8989
},
9090
"queryString": [],
91-
"url": "https://api.datadoghq.com/api/v2/cases/b074b409-24f8-42ae-b545-b1486429630d/archive"
91+
"url": "https://api.datadoghq.com/api/v2/cases/dc347aa5-0e19-44fe-9ba3-0114728a47a1/archive"
9292
},
9393
"response": {
94-
"bodySize": 1012,
94+
"bodySize": 1013,
9595
"content": {
9696
"mimeType": "application/vnd.api+json",
97-
"size": 1012,
98-
"text": "{\"data\":{\"id\":\"b074b409-24f8-42ae-b545-b1486429630d\",\"type\":\"case\",\"attributes\":{\"archived_at\":\"2025-07-21T13:52:42.933945716Z\",\"attributes\":{},\"comment_count\":0,\"created_at\":\"2025-07-21T13:52:42.51392Z\",\"creation_source\":\"MANUAL\",\"custom_attributes\":{},\"description\":\"\",\"insights\":[],\"internal_id\":\"b074b409-24f8-42ae-b545-b1486429630d\",\"key\":\"DDFC-72318\",\"merge_status\":\"NOT_MERGED\",\"modified_at\":\"2025-07-21T13:52:42.933946Z\",\"priority\":\"P4\",\"public_id\":\"72378\",\"status\":\"OPEN\",\"title\":\"My new case\",\"type\":\"STANDARD\",\"type_id\":\"00000000-0000-0000-0000-000000000001\"},\"relationships\":{\"created_by\":{\"data\":{\"id\":\"3ad549bf-eba0-11e9-a77a-0705486660d0\",\"type\":\"user\"}},\"modified_by\":{\"data\":{\"id\":\"3ad549bf-eba0-11e9-a77a-0705486660d0\",\"type\":\"user\"}},\"project\":{\"data\":{\"id\":\"d4bbe1af-f36e-42f1-87c1-493ca35c320e\",\"type\":\"project\"}}}},\"included\":[{\"id\":\"3ad549bf-eba0-11e9-a77a-0705486660d0\",\"type\":\"user\",\"attributes\":{\"active\":true,\"email\":\"[email protected]\",\"handle\":\"[email protected]\",\"name\":\"frog\"}}]}"
97+
"size": 1013,
98+
"text": "{\"data\":{\"id\":\"dc347aa5-0e19-44fe-9ba3-0114728a47a1\",\"type\":\"case\",\"attributes\":{\"archived_at\":\"2025-08-12T11:05:37.477128247Z\",\"attributes\":{},\"comment_count\":0,\"created_at\":\"2025-08-12T11:05:37.067799Z\",\"creation_source\":\"MANUAL\",\"custom_attributes\":{},\"description\":\"\",\"insights\":[],\"internal_id\":\"dc347aa5-0e19-44fe-9ba3-0114728a47a1\",\"key\":\"DDFC-75923\",\"merge_status\":\"NOT_MERGED\",\"modified_at\":\"2025-08-12T11:05:37.477128Z\",\"priority\":\"P4\",\"public_id\":\"75983\",\"status\":\"OPEN\",\"title\":\"My new case\",\"type\":\"STANDARD\",\"type_id\":\"00000000-0000-0000-0000-000000000001\"},\"relationships\":{\"created_by\":{\"data\":{\"id\":\"3ad549bf-eba0-11e9-a77a-0705486660d0\",\"type\":\"user\"}},\"modified_by\":{\"data\":{\"id\":\"3ad549bf-eba0-11e9-a77a-0705486660d0\",\"type\":\"user\"}},\"project\":{\"data\":{\"id\":\"d4bbe1af-f36e-42f1-87c1-493ca35c320e\",\"type\":\"project\"}}}},\"included\":[{\"id\":\"3ad549bf-eba0-11e9-a77a-0705486660d0\",\"type\":\"user\",\"attributes\":{\"active\":true,\"email\":\"[email protected]\",\"handle\":\"[email protected]\",\"name\":\"frog\"}}]}"
9999
},
100100
"cookies": [],
101101
"headers": [
@@ -110,8 +110,8 @@
110110
"status": 200,
111111
"statusText": "OK"
112112
},
113-
"startedDateTime": "2025-07-21T13:52:42.597Z",
114-
"time": 412
113+
"startedDateTime": "2025-08-12T11:05:37.081Z",
114+
"time": 407
115115
}
116116
],
117117
"pages": [],
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
"2025-07-21T13:52:43.015Z"
1+
"2025-08-12T11:05:37.497Z"

cassettes/v2/Case-Management_2486725080/Assign-case-returns-Bad-Request-response_1562814608/recording.har

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
"content": {
4343
"mimeType": "application/vnd.api+json",
4444
"size": 839,
45-
"text": "{\"data\":{\"id\":\"510b0121-1477-43c0-8986-78f011016d48\",\"type\":\"case\",\"attributes\":{\"attributes\":{},\"comment_count\":0,\"created_at\":\"2025-07-21T13:52:43.335245Z\",\"creation_source\":\"MANUAL\",\"custom_attributes\":{},\"description\":\"\",\"insights\":[],\"internal_id\":\"510b0121-1477-43c0-8986-78f011016d48\",\"key\":\"DDFC-72319\",\"merge_status\":\"NOT_MERGED\",\"priority\":\"P4\",\"public_id\":\"72379\",\"status\":\"OPEN\",\"title\":\"My new case\",\"type\":\"STANDARD\",\"type_id\":\"00000000-0000-0000-0000-000000000001\"},\"relationships\":{\"created_by\":{\"data\":{\"id\":\"3ad549bf-eba0-11e9-a77a-0705486660d0\",\"type\":\"user\"}},\"project\":{\"data\":{\"id\":\"d4bbe1af-f36e-42f1-87c1-493ca35c320e\",\"type\":\"project\"}}}},\"included\":[{\"id\":\"3ad549bf-eba0-11e9-a77a-0705486660d0\",\"type\":\"user\",\"attributes\":{\"active\":true,\"email\":\"[email protected]\",\"handle\":\"[email protected]\",\"name\":\"frog\"}}]}"
45+
"text": "{\"data\":{\"id\":\"86b3e00d-7c2d-4683-8007-6514c321628a\",\"type\":\"case\",\"attributes\":{\"attributes\":{},\"comment_count\":0,\"created_at\":\"2025-08-12T11:05:37.877307Z\",\"creation_source\":\"MANUAL\",\"custom_attributes\":{},\"description\":\"\",\"insights\":[],\"internal_id\":\"86b3e00d-7c2d-4683-8007-6514c321628a\",\"key\":\"DDFC-75924\",\"merge_status\":\"NOT_MERGED\",\"priority\":\"P4\",\"public_id\":\"75984\",\"status\":\"OPEN\",\"title\":\"My new case\",\"type\":\"STANDARD\",\"type_id\":\"00000000-0000-0000-0000-000000000001\"},\"relationships\":{\"created_by\":{\"data\":{\"id\":\"3ad549bf-eba0-11e9-a77a-0705486660d0\",\"type\":\"user\"}},\"project\":{\"data\":{\"id\":\"d4bbe1af-f36e-42f1-87c1-493ca35c320e\",\"type\":\"project\"}}}},\"included\":[{\"id\":\"3ad549bf-eba0-11e9-a77a-0705486660d0\",\"type\":\"user\",\"attributes\":{\"active\":true,\"email\":\"[email protected]\",\"handle\":\"[email protected]\",\"name\":\"frog\"}}]}"
4646
},
4747
"cookies": [],
4848
"headers": [
@@ -57,11 +57,11 @@
5757
"status": 201,
5858
"statusText": "Created"
5959
},
60-
"startedDateTime": "2025-07-21T13:52:43.017Z",
61-
"time": 384
60+
"startedDateTime": "2025-08-12T11:05:37.499Z",
61+
"time": 385
6262
},
6363
{
64-
"_id": "389b3a16ce3121bf75a0da30a1d8d867",
64+
"_id": "924a1ee4b0a69de2492dde4ef2150af6",
6565
"_order": 0,
6666
"cache": {},
6767
"request": {
@@ -88,7 +88,7 @@
8888
"text": "{\"data\":{\"attributes\":{\"assignee_id\":\"invalid-uuid\"},\"type\":\"case\"}}"
8989
},
9090
"queryString": [],
91-
"url": "https://api.datadoghq.com/api/v2/cases/510b0121-1477-43c0-8986-78f011016d48/assign"
91+
"url": "https://api.datadoghq.com/api/v2/cases/86b3e00d-7c2d-4683-8007-6514c321628a/assign"
9292
},
9393
"response": {
9494
"bodySize": 51,
@@ -110,8 +110,8 @@
110110
"status": 400,
111111
"statusText": "Bad Request"
112112
},
113-
"startedDateTime": "2025-07-21T13:52:43.407Z",
114-
"time": 399
113+
"startedDateTime": "2025-08-12T11:05:37.889Z",
114+
"time": 376
115115
}
116116
],
117117
"pages": [],

0 commit comments

Comments
 (0)