Onsite Sponsored Products Line Items
This guide documents the new "Budget Optimizer", Conquesting and Schedule Legs capabilities for Sponsored Products Line Items endpoints (available only in Preview)
Getting StartedLearn more about how open auction line items work with our API in Onsite Sponsored Products!
The endpoints and functionalities covered in this page refers to features available exclusively in Preview for now, which doesn't mean that they are the only ones available for this domain/scope.
For more complete information about our API capabilities, check the Stable version in Welcome to Criteo Retail Media API
Endpoints
| Method | Endpoint | Description |
|---|---|---|
| GET | /campaigns/{campaignId}/auction-line-items | Get all auction line items from a specific campaign |
| POST | /campaigns/{campaignId}/auction-line-items | Create a new auction line item |
| GET | /auction-line-items/{lineItemId} | Get a specific auction line item |
| PUT | /auction-line-items/{lineItemId} | Update a specific auction line item |
Info
- Create operations using the
POSTmethod expect every Required field; omitting Optional fields will set those fields to Default values- Update operations using the
PUTmethod expect every Writeable field; omitting these fields is equivalent to setting them tonull, if possible
Line Item Attributes
Attribute | Data Type | Description |
|---|---|---|
| string | Auction line item ID, generated internally by Criteo Accepted values: string of int64
|
| string | Line item name, must be unique within the Campaign Accepted values: between 2 and 255-chars string
|
| string | Campaign ID, in which the respective line item belongs and generated internally by Criteo Accepted values: string of int64
|
| string | Retailer ID where the line item will serve ads on Accepted values: string of int64
|
| date | Start date of the line item, used to schedule its activation and start serving ads. To understand the conditions that will cause a status to change, check out Campaign & Line Item Status ℹ️ This now supports datetime offset to define the desired time zone, in the format of Accepted values: |
| date | End date of the line item; serves ads indefinitely if omitted or set to ℹ️ This now supports datetime offset to define the desired time zone, in the format of Accepted values: |
| decimal | Lifetime spend cap of line item (optional), uncapped if omitted or set to Accepted values: |
| decimal | Budget amount the line item has already spent Accepted values: |
| decimal | Amount the line item has remaining until cap is hit; Accepted values: 0 ≤ |
| decimal | Amount the line item can spend per calendar month (optional), in the Account time zone Accepted values: |
| decimal | Amount the line item can spend per calendar month (optional), in the Account time zone
It resets each day overwritten by calculation if Accepted values: |
| boolean | To activate, either line item Accepted values: |
| enum | Indicate whether Adaptive CPC is enabled or not
Accepted values: |
| enum | Bid algorithm optimizing for sales conversions, sales revenue or clicks Accepted values: |
| decimal | If optimizing for ℹ️ Note:
Accepted values: at least the greatest value of |
| decimal | If optimizing for ℹ️ Note:
Accepted values: at least |
| enum | Line item status; can only be updated by a user to Accepted values: |
| object | Settings allowing custom scheduling for serving ads serving, organized by a combination of Accepted values: see below
|
| enum | Keyword strategy used to target users according to the promoted products appended in the line item and their competitors ℹ️ Note: "Conquesting" is not available for all retailers; when creating a new line item for those retailers, a validation error will return which can be avoided by omitting this attribute from the request Accepted values:
Default: |
| timestamp | Timestamp of line item creation, in UTC Accepted values: |
| timestamp | Timestamp of last line item update, in UTC Accepted values: |
(*) Required for create operations
Field Definitions
- Writeable (Y/N): Indicates if the field can be modified in requests.
- Nullable (Y/N): Indicates if the field can accept null/empty values.
- Primary Key: A unique, immutable identifier of the entity, generated internally by Criteo. Primary keys are typically ID fields (e.g.,
retailerId,campaignId,lineItemId) and are usually required in the URL path.
Flight Schedule Legs Attributes
Attribute | Data Type | Description |
|---|---|---|
| enum | Day of the week or day type that the respective Accepted values: |
| time | Start time that the respective ℹ️ This time value will be interpreted considering the time zone provided in the Accepted values: |
| time | End time that the respective ℹ️ This time value will be interpreted considering the time zone provided in the Accepted values: |
Get all Onsite Sponsored Products Line Items
This endpoint lists all Onsite Sponsored Products line items in the specified campaign.
Results are paginated using offset and limit query parameters; if omitted, defaults to 0 and 500, respectively - see API Response

https://api.criteo.com/preview/retail-media/campaigns/{campaignId}/auction-line-items?offset={offset}&limit={limit}
Sample Request
curl -L -X GET "https://api.criteo.com/preview/retail-media/campaigns/544937665113018368/auction-line-items?offset=0&limit=500" \
-H "Authorization: Bearer <MY_ACCESS_TOKEN>" \
-H "Accept: application/json"import http.client
conn = http.client.HTTPSConnection("api.criteo.com")
headers = {
'Authorization': 'Bearer <MY_ACCESS_TOKEN>',
'Accept': 'application/json'
}
conn.request("GET", "/preview/retail-media/campaigns/544937665113018368/auction-line-items?offset=0&limit=500", headers=headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))OkHttpClient client = new OkHttpClient().newBuilder()
.build();
Request request = new Request.Builder()
.url("https://api.criteo.com/preview/retail-media/campaigns/544937665113018368/auction-line-items?offset=0&limit=500")
.method("GET", null)
.addHeader("Authorization", "Bearer <MY_ACCESS_TOKEN>")
.addHeader("Accept", "application/json")
.build();
Response response = client.newCall(request).execute();<?php
require_once 'HTTP/Request2.php';
$request = new HTTP_Request2();
$request->setUrl('https://api.criteo.com/preview/retail-media/campaigns/544937665113018368/auction-line-items?offset=0&limit=500');
$request->setMethod(HTTP_Request2::METHOD_GET);
$request->setConfig([
'follow_redirects' => TRUE
]);
$request->setHeader([
'Authorization' => 'Bearer <MY_ACCESS_TOKEN>',
'Accept' => 'application/json'
]);
try {
$response = $request->send();
if ($response->getStatus() == 200) {
echo $response->getBody();
} else {
echo 'Unexpected HTTP status: ' . $response->getStatus() . ' ' . $response->getReasonPhrase();
}
} catch(HTTP_Request2_Exception $e) {
echo 'Error: ' . $e->getMessage();
}Sample Response
{
"data": [
{
"id": "9979917896105882144",
"type": "SponsoredProductsLineItem",
"attributes": {
"name": "Line Item 123 Always On",
"campaignId": "544937665113018368",
"targetRetailerId": "12345",
"startDate": "2024-09-01T04:00:00+00:00",
"endDate": null,
"status": "active",
"budget": 5000.00,
"budgetSpent": 2354.38,
"budgetRemaining": 2645.62,
"maxBid": 2.50,
"targetBid": 1.00000000,
"monthlyPacing": null,
"dailyPacing": null,
"isAutoDailyPacing": false,
"bidStrategy": "automated",
"optimizationStrategy": "conversion",
"flightSchedule": null,
"keywordStrategy": "genericBrandedAndConquesting",
"createdAt": "2024-08-24T15:46:45.1578781+00:00",
"updatedAt": "2025-08-12T08:02:36.9158515+00:00"
}
},
// ...
{
"id": "6854840188706902009",
"type": "SponsoredProductsLineItem",
"attributes": {
"name": "Line Item 456 - Weekends Only",
"campaignId": "544937665113018368",
"targetRetailerId": "6789",
"startDate": "2025-08-09T04:00:00+00:00",
"endDate": "2026-01-01T03:59:59+00:00",
"status": "draft",
"budget": 12000.00,
"budgetSpent": 0.00,
"budgetRemaining": 12000.00,
"maxBid": 5.0,
"targetBid": 1.0,
"monthlyPacing": null,
"dailyPacing": null,
"bidStrategy": "automated",
"optimizationStrategy": "conversion",
"isAutoDailyPacing": false,
"flightSchedule": {
"legs": [
{
"dayOfWeek": "Weekends",
"startTime": "00:00",
"endTime": "23:59"
}
]
},
"keywordStrategy": "genericAndBranded",
"createdAt": "2025-07-24T15:46:45.7793506-04:00",
"updatedAt": "2025-08-12T08:02:36.9158515-04:00"
}
},
],
"metadata": {
"count": 35,
"offset": 0,
"limit": 25
},
"warnings": [],
"errors": []
}Create an Onsite Sponsored Products Line Item
This endpoint creates a new Onsite Sponsored Products line item in the specified campaign.

https://api.criteo.com/preview/retail-media/campaigns/{campaignId}/auction-line-items
Sample Request
curl -L -X POST "https://api.criteo.com/preview/retail-media/campaigns/544937665113018368/auction-line-items" \
-H "Authorization: Bearer <MY_ACCESS_TOKEN>" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{
"data": {
"attributes": {
"name": "Product ABC Sponsored Weekend Conversions",
"targetRetailerId": "12345",
"status": "draft",
"startDate": "2025-09-01T00:00:00-04:00",
"endDate": "2025-12-31T23:59:59-04:00",
"budget": 1000.0,
"monthlyPacing": null,
"isAutoDailyPacing": false,
"targetBid": 1.0,
"maxBid": 5,
"bidStrategy": "automated",
"optimizationStrategy": "conversion",
"flightSchedule": {
"legs": [
{
"dayOfWeek": "Weekends",
"startTime": "00:00",
"endTime": "23:59"
}
]
},
"keywordStrategy": "genericBrandedAndConquesting"
}
}
}'import http.client
import json
conn = http.client.HTTPSConnection("api.criteo.com")
payload = json.dumps({
"data": {
"attributes": {
"name": "Product ABC Sponsored Weekend Conversions",
"targetRetailerId": "12345",
"status": "draft",
"startDate": "2025-09-01T00:00:00-04:00",
"endDate": "2025-12-31T23:59:59-04:00",
"budget": 1000.0,
"monthlyPacing": None,
"isAutoDailyPacing": False,
"targetBid": 1.0,
"maxBid": 5,
"bidStrategy": "automated",
"optimizationStrategy": "conversion",
"flightSchedule": {
"legs": [
{
"dayOfWeek": "Weekends",
"startTime": "00:00",
"endTime": "23:59"
}
]
},
"keywordStrategy": "genericBrandedAndConquesting"
}
}
})
headers = {
'Authorization': 'Bearer <MY_ACCESS_TOKEN>',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
conn.request("POST", "/preview/retail-media/campaigns/544937665113018368/auction-line-items", payload, headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))OkHttpClient client = new OkHttpClient().newBuilder()
.build();
MediaType mediaType = MediaType.parse("application/json");
RequestBody body = RequestBody.create(mediaType, """
{
"data": {
"attributes": {
"name": "Product ABC Sponsored Weekend Conversions",
"targetRetailerId": "12345",
"status": "draft",
"startDate": "2025-09-01T00:00:00-04:00",
"endDate": "2025-12-31T23:59:59-04:00",
"budget": 1000.0,
"monthlyPacing": null,
"isAutoDailyPacing": false,
"targetBid": 1.0,
"maxBid": 5,
"bidStrategy": "automated",
"optimizationStrategy": "conversion",
"flightSchedule": {
"legs": [
{
"dayOfWeek": "Weekends",
"startTime": "00:00",
"endTime": "23:59"
}
]
},
"keywordStrategy": "genericBrandedAndConquesting"
}
}
}
""");
Request request = new Request.Builder()
.url("https://api.criteo.com/preview/retail-media/campaigns/544937665113018368/auction-line-items")
.method("POST", body)
.addHeader("Authorization", "Bearer <MY_ACCESS_TOKEN>")
.addHeader("Content-Type", "application/json")
.addHeader("Accept", "application/json")
.build();
Response response = client.newCall(request).execute();<?php
require_once 'HTTP/Request2.php';
$request = new HTTP_Request2();
$request->setUrl('https://api.criteo.com/preview/retail-media/campaigns/544937665113018368/auction-line-items');
$request->setMethod(HTTP_Request2::METHOD_POST);
$request->setConfig([
'follow_redirects' => TRUE
]);
$request->setHeader([
'Authorization' => 'Bearer <MY_ACCESS_TOKEN>',
'Content-Type' => 'application/json',
'Accept' => 'application/json'
]);
$request->setBody(json_encode([
"data" => [
"attributes" => [
"name" => "Product ABC Sponsored Weekend Conversions",
"targetRetailerId" => "12345",
"status" => "draft",
"startDate" => "2025-09-01T00:00:00-04:00",
"endDate" => "2025-12-31T23:59:59-04:00",
"budget" => 1000.0,
"monthlyPacing" => null,
"isAutoDailyPacing" => false,
"targetBid" => 1.0,
"maxBid" => 5,
"bidStrategy" => "automated",
"optimizationStrategy" => "conversion",
"flightSchedule" => [
"legs" => [
[
"dayOfWeek" => "Weekends",
"startTime" => "00:00",
"endTime" => "23:59"
]
]
],
"keywordStrategy" => "genericBrandedAndConquesting"
]
]
], JSON_PRETTY_PRINT));
try {
$response = $request->send();
if ($response->getStatus() == 200) {
echo $response->getBody();
} else {
echo 'Unexpected HTTP status: ' . $response->getStatus() . ' ' . $response->getReasonPhrase();
}
} catch(HTTP_Request2_Exception $e) {
echo 'Error: ' . $e->getMessage();
}Sample Response
{
"data": {
"id": "764555166286684160",
"type": "SponsoredProductsLineItem",
"attributes": {
"name": "Product ABC Sponsored Weekend Conversions",
"startDate": "2025-09-01T04:00:00+00:00",
"endDate": "2026-01-01T03:59:59+00:00",
"status": "draft",
"targetBid": 1.0000,
"targetRetailerId": "12345",
"budget": 10.00,
"campaignId": "544937665113018368",
"budgetSpent": 0.00,
"budgetRemaining": 10.00,
"createdAt": "2025-10-10T18:29:16.3861275+00:00",
"updatedAt": "2025-10-10T18:29:16.3861275+00:00",
"maxBid": 0.0,
"monthlyPacing": 1000.00,
"dailyPacing": 0.00,
"bidStrategy": "automated",
"optimizationStrategy": "conversion",
"isAutoDailyPacing": false,
"flightSchedule": {
"legs": [
{
"dayOfWeek": "weekends",
"startTime": "00:00",
"endTime": "23:59"
}
]
},
"keywordStrategy": "genericAndBranded"
}
},
"warnings": [],
"errors": []
}Get a specific Onsite Sponsored Products Line Item
This endpoint retrieves the specified Onsite Sponsored Products line item

https://api.criteo.com/preview/retail-media/auction-line-items/{lineItemId}
Sample Request
curl -L -X GET "https://api.criteo.com/preview/retail-media/auction-line-items/6854840188706902009" \
-H "Authorization: Bearer <MY_ACCESS_TOKEN>" \
-H "Accept: application/json"import http.client
conn = http.client.HTTPSConnection("api.criteo.com")
headers = {
'Authorization': 'Bearer <MY_ACCESS_TOKEN>',
'Accept': 'application/json'
}
conn.request("GET", "/preview/retail-media/auction-line-items/6854840188706902009", headers=headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))OkHttpClient client = new OkHttpClient().newBuilder()
.build();
Request request = new Request.Builder()
.url("https://api.criteo.com/preview/retail-media/auction-line-items/6854840188706902009")
.method("GET", null)
.addHeader("Authorization", "Bearer <MY_ACCESS_TOKEN>")
.addHeader("Accept", "application/json")
.build();
Response response = client.newCall(request).execute();<?php
require_once 'HTTP/Request2.php';
$request = new HTTP_Request2();
$request->setUrl('https://api.criteo.com/preview/retail-media/auction-line-items/6854840188706902009');
$request->setMethod(HTTP_Request2::METHOD_GET);
$request->setConfig([
'follow_redirects' => TRUE
]);
$request->setHeader([
'Authorization' => 'Bearer <MY_ACCESS_TOKEN>',
'Accept' => 'application/json'
]);
try {
$response = $request->send();
if ($response->getStatus() == 200) {
echo $response->getBody();
} else {
echo 'Unexpected HTTP status: ' . $response->getStatus() . ' ' . $response->getReasonPhrase();
}
} catch(HTTP_Request2_Exception $e) {
echo 'Error: ' . $e->getMessage();
}Sample Response
{
"data": {
"id": "6854840188706902009",
"type": "SponsoredProductsLineItem",
"attributes": {
"name": "Line Item 456 - Weekends Only",
"campaignId": "544937665113018368",
"targetRetailerId": "6789",
"startDate": "2025-08-09T04:00:00+00:00",
"endDate": "2026-01-01T03:59:59+00:00",
"status": "draft",
"budget": 12000.00,
"budgetSpent": 0.00,
"budgetRemaining": 12000.00,
"maxBid": 5.0,
"targetBid": 1.0,
"monthlyPacing": 0.00,
"dailyPacing": 0.00,
"bidStrategy": "automated",
"optimizationStrategy": "conversion",
"isAutoDailyPacing": false,
"flightSchedule": {
"legs": [
{
"dayOfWeek": "Weekends",
"startTime": "00:00",
"endTime": "23:59"
}
]
},
"keywordStrategy": "genericAndBranded",
"createdAt": "2025-07-24T15:46:45.7793506-04:00",
"updatedAt": "2025-08-12T08:02:36.9158515-04:00"
}
},
"warnings": [],
"errors": []
}Update a specific Onsite Sponsored Products Line Item
This endpoint updates the specified Onsite Sponsored Products line item. In this example, we are:
- renaming the line item and start date, to be scheduled to deliver during Q4.
- enabling auto daily pacing by setting a monthly pace simultaneously. Note that with auto daily pacing enabled, daily pacing is automatically calculated and overwrites its previous value, if any.
- modifying the day scheduling to deliver ads during extended weekend evenings only, i.e., Fridays, Saturdays and Sundays from 18h until 0h (local time)
Also, note the draft state of the line item because products to be promoted have not yet been added.

https://api.criteo.com/preview/retail-media/auction-line-items/{lineItemId}
Sample Request
curl -L -X PUT "https://api.criteo.com/preview/retail-media/auction-line-items/6854840188706902009" \
-H "Authorization: Bearer <MY_ACCESS_TOKEN>" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{
"data": {
"id": "6854840188706902009",
"type": "SponsoredProductsLineItem",
"attributes": {
"name": "Line Item 456 - Q4 Weekends Evenings",
"campaignId": "544937665113018368",
"targetRetailerId": "6789",
"startDate": "2025-10-01T00:00:00-04:00",
"endDate": "2025-12-31T23:59:59-04:00",
"status": "active",
"budget": 12000.00,
"maxBid": 5.0,
"targetBid": 1.0,
"monthlyPacing": 4000.00,
"isAutoDailyPacing": true,
"flightSchedule": {
"legs": [
{
"dayOfWeek": "friday",
"startTime": "18:00",
"endTime": "23:59"
},
{
"dayOfWeek": "weekends",
"startTime": "18:00",
"endTime": "23:59"
}
]
}
}
}
}'import http.client
import json
conn = http.client.HTTPSConnection("api.criteo.com")
payload = json.dumps({
"data": {
"id": "6854840188706902009",
"type": "SponsoredProductsLineItem",
"attributes": {
"name": "Line Item 456 - Q4 Weekends Evenings",
"campaignId": "8343086999167541140",
"targetRetailerId": "6789",
"startDate": "2025-10-01T00:00:00-04:00",
"endDate": "2025-12-31T23:59:59-04:00",
"status": "active",
"budget": 12000.00,
"maxBid": 5.0,
"targetBid": 1.0,
"monthlyPacing": 4000.00,
"isAutoDailyPacing": True,
"flightSchedule": {
"legs": [
{
"dayOfWeek": "friday",
"startTime": "18:00",
"endTime": "23:59"
},
{
"dayOfWeek": "weekends",
"startTime": "18:00",
"endTime": "23:59"
}
]
}
}
}
})
headers = {
'Authorization': 'Bearer <MY_ACCESS_TOKEN>',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
conn.request("PUT", "/preview/retail-media/auction-line-items/6854840188706902009", payload, headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))OkHttpClient client = new OkHttpClient().newBuilder()
.build();
MediaType mediaType = MediaType.parse("application/json");
RequestBody body = RequestBody.create(mediaType, """
{
"data": {
"id": "6854840188706902009",
"type": "SponsoredProductsLineItem",
"attributes": {
"name": "Line Item 456 - Q4 Weekends Evenings",
"campaignId": "8343086999167541140",
"targetRetailerId": "6789",
"startDate": "2025-10-01T00:00:00-04:00",
"endDate": "2025-12-31T23:59:59-04:00",
"status": "active",
"budget": 12000.00,
"maxBid": 5.0,
"targetBid": 1.0,
"monthlyPacing": 4000.00,
"isAutoDailyPacing": true,
"flightSchedule": {
"legs": [
{
"dayOfWeek": "friday",
"startTime": "18:00",
"endTime": "23:59"
},
{
"dayOfWeek": "weekends",
"startTime": "18:00",
"endTime": "23:59"
}
]
}
}
}
}
""");
Request request = new Request.Builder()
.url("https://api.criteo.com/preview/retail-media/auction-line-items/6854840188706902009")
.method("PUT", body)
.addHeader("Authorization", "Bearer <MY_ACCESS_TOKEN>")
.addHeader("Content-Type", "application/json")
.addHeader("Accept", "application/json")
.build();
Response response = client.newCall(request).execute();<?php
require_once 'HTTP/Request2.php';
$request = new HTTP_Request2();
$request->setUrl('https://api.criteo.com/preview/retail-media/auction-line-items/6854840188706902009');
$request->setMethod(HTTP_Request2::METHOD_PUT);
$request->setConfig([
'follow_redirects' => TRUE
]);
$request->setHeader([
'Authorization' => 'Bearer <MY_ACCESS_TOKEN>',
'Content-Type' => 'application/json',
'Accept' => 'application/json'
]);
$request->setBody(json_encode([
"data" => [
"id" => "6854840188706902009",
"type" => "SponsoredProductsLineItem",
"attributes" => [
"name" => "Line Item 456 - Q4 Weekends Evenings",
"campaignId" => "8343086999167541140",
"targetRetailerId" => "6789",
"startDate" => "2025-10-01T00:00:00-04:00",
"endDate" => "2025-12-31T23:59:59-04:00",
"status" => "active",
"budget" => 12000.00,
"maxBid" => 5.0,
"targetBid" => 1.0,
"monthlyPacing" => 4000.00,
"isAutoDailyPacing" => true,
"flightSchedule" => [
"legs" => [
[
"dayOfWeek" => "friday",
"startTime" => "18:00",
"endTime" => "23:59"
],
[
"dayOfWeek" => "weekends",
"startTime" => "18:00",
"endTime" => "23:59"
]
]
]
]
]
], JSON_PRETTY_PRINT));
try {
$response = $request->send();
if ($response->getStatus() == 200) {
echo $response->getBody();
} else {
echo 'Unexpected HTTP status: ' . $response->getStatus() . ' ' . $response->getReasonPhrase();
}
} catch(HTTP_Request2_Exception $e) {
echo 'Error: ' . $e->getMessage();
}Sample Response
{
"data": {
"id": "6854840188706902009",
"type": "SponsoredProductsLineItem",
"attributes": {
"name": "Line Item 456 - Q4 Weekends Evenings",
"campaignId": "544937665113018368",
"targetRetailerId": "6789",
"startDate": "2025-10-01T04:00:00+00:00",
"endDate": "2026-01-01T03:59:59+00:00",
"status": "draft",
"budget": 12000.00,
"budgetSpent": 0.00,
"budgetRemaining": 12000.00,
"maxBid": 5.0,
"targetBid": 1.00000000,
"monthlyPacing": 4000.00,
"dailyPacing": 200.00,
"bidStrategy": "automated",
"optimizationStrategy": "conversion",
"isAutoDailyPacing": true,
"flightSchedule": {
"legs": [
{
"dayOfWeek": "friday",
"startTime": "18:00",
"endTime": "23:59"
},
{
"dayOfWeek": "weekends",
"startTime": "18:00",
"endTime": "23:59"
}
]
},
"keywordStrategy": "genericAndBranded",
"createdAt": "2024-09-24T15:47:03.228224+00:00",
"updatedAt": "2025-08-12T09:34:07.6168328+00:00"
}
},
"warnings": [],
"errors": []
}Responses
Responses | Description |
|---|---|
🔵 | Call completed with success |
🔵 | Line item created with success |
🔴 | Bad request leading to a validation error Common validation errors
|
Updated 2 days ago