Skip to content

Commit ec089d8

Browse files
authored
Merge pull request #205 from criteo/update-oas-2026-02-17
Update OAS up to 2026-01
2 parents d8dfc6b + c03a76e commit ec089d8

File tree

4 files changed

+100
-3
lines changed

4 files changed

+100
-3
lines changed

api-specifications/commercegrid_2026-01.json

Lines changed: 97 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -355,10 +355,104 @@
355355
}
356356
]
357357
}
358+
},
359+
"/2026-01/commerce-grid/me": {
360+
"get": {
361+
"tags": [
362+
"Gateway"
363+
],
364+
"description": "Get information about the currently logged application",
365+
"operationId": "GetCurrentApplication",
366+
"responses": {
367+
"200": {
368+
"description": "Success",
369+
"content": {
370+
"application/json": {
371+
"schema": {
372+
"$ref": "#/components/schemas/ApplicationSummaryModelResponse"
373+
}
374+
}
375+
}
376+
}
377+
},
378+
"security": [
379+
{
380+
"oauth": [ ]
381+
}
382+
]
383+
}
358384
}
359385
},
360386
"components": {
361387
"schemas": {
388+
"ApplicationSummaryModel": {
389+
"type": "object",
390+
"properties": {
391+
"applicationId": {
392+
"type": "integer",
393+
"format": "int32",
394+
"nullable": true
395+
},
396+
"criteoService": {
397+
"type": "string",
398+
"nullable": true
399+
},
400+
"description": {
401+
"type": "string",
402+
"nullable": true
403+
},
404+
"name": {
405+
"type": "string",
406+
"nullable": true
407+
},
408+
"organizationId": {
409+
"type": "integer",
410+
"format": "int32",
411+
"nullable": true
412+
}
413+
},
414+
"description": "Used for the /me endpoint. Contains information about the currently authenticated application that we accept to give to our clients",
415+
"nullable": true
416+
},
417+
"ApplicationSummaryModelResource": {
418+
"type": "object",
419+
"properties": {
420+
"attributes": {
421+
"$ref": "#/components/schemas/ApplicationSummaryModel"
422+
},
423+
"type": {
424+
"type": "string",
425+
"nullable": true
426+
}
427+
},
428+
"description": "A top-level object that encapsulates a Criteo API response for a single value",
429+
"nullable": true
430+
},
431+
"ApplicationSummaryModelResponse": {
432+
"type": "object",
433+
"properties": {
434+
"data": {
435+
"$ref": "#/components/schemas/ApplicationSummaryModelResource"
436+
},
437+
"errors": {
438+
"type": "array",
439+
"items": {
440+
"$ref": "#/components/schemas/CommonProblem"
441+
},
442+
"nullable": true,
443+
"readOnly": true
444+
},
445+
"warnings": {
446+
"type": "array",
447+
"items": {
448+
"$ref": "#/components/schemas/CommonProblem"
449+
},
450+
"nullable": true,
451+
"readOnly": true
452+
}
453+
},
454+
"description": "A top-level object that encapsulates a Criteo API response for a single value"
455+
},
362456
"AudienceError": {
363457
"required": [
364458
"code",
@@ -1241,6 +1335,9 @@
12411335
}
12421336
],
12431337
"tags": [
1338+
{
1339+
"name": "Gateway"
1340+
},
12441341
{
12451342
"name": "Segment"
12461343
}

api-specifications/marketingsolutions_2025-07.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10969,7 +10969,7 @@
1096910969
},
1097010970
"startDate": {
1097110971
"type": "string",
10972-
"format": "date-time"
10972+
"format": "date"
1097310973
},
1097410974
"status": {
1097510975
"$ref": "#/components/schemas/SellerBudgetStatusV2"

api-specifications/marketingsolutions_2025-10.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11638,7 +11638,7 @@
1163811638
},
1163911639
"startDate": {
1164011640
"type": "string",
11641-
"format": "date-time"
11641+
"format": "date"
1164211642
},
1164311643
"status": {
1164411644
"$ref": "#/components/schemas/SellerBudgetStatusV2"

api-specifications/marketingsolutions_2026-01.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11638,7 +11638,7 @@
1163811638
},
1163911639
"startDate": {
1164011640
"type": "string",
11641-
"format": "date-time"
11641+
"format": "date"
1164211642
},
1164311643
"status": {
1164411644
"$ref": "#/components/schemas/SellerBudgetStatusV2"

0 commit comments

Comments
 (0)