GuidesAPI ReferenceChangelog
GuidesAPI ReferenceChangelogLog In
Guides

Sellers

Introduction

A seller represents an external entity that sells products in the retailers' environment (marketplace).

Sellers entities are, initially, available through retailers' catalogs and can aggregate different products offered by them in the retailer marketplace.

A demand account can be associated with multiple sellers (across multiple retailers) and be willing to serve ads across them.

This endpoint provides a programatic way to identify all sellers (and, consequently, retailers) associated with the respective account, so that campaigns can be set up accordingly.


Endpoints

VerbEndpointDescription
POST/accounts/sellers/searchSearch for Sellers, associated with retailers, given an account ID

Sellers Accounts Search Attributes

AttributeData TypeDescription
accountId*stringAccount ID, to consider in the search for Seller accounts

Accepted values: int64
Writeable? N / Nullable? N
includeDetailsbooleanFlag indicating to include accounts' details in the response, such as name.
It may improve performance when set to false

Accepted values: true/false
Default: false
Writeable? N / Nullable? Y
sellerIdstringSeller ID, specific to the associated Retailer

Accepted values: int64
Writeable? N / Nullable? N
retailerIdintegerRetailer ID which the seller account is associated with

Accepted values: int32
Writeable? N / Nullable? N
namestringSeller name

Accepted values: string
Writeable? N / Nullable? Y

* Required

Search for Sellers associated with Account

This endpoint returns a list of Seller IDs (each associated with a different retailer) available for the given account ID:

https://api.criteo.com/preview/retail-media/accounts/sellers/search

Sample Request

curl -L -X POST 'https://api.criteo.com/preview/retail-media/account-management/accounts/sellers/search' \
    -H 'Content-Type: application/json' \
    -H 'Accept: application/json' \
    -H 'Authorization: Bearer <MY_ACCESS_TOKEN>' \
    -d '{
            "data": {
                "type": "<string>",
                "attributes": {
                    "accountIds": [
                        "100000002342852933"
                    ],
                    "includeDetails": false
                }
            }
        }'

Sample Response

{
    "data": [
        {
            "type": "SellerSearchResult",
            "attributes": {
                "accountId": "100000002342852933",
                "sellers": [
                    {
                        "sellerId": "xxxxxxxxxxxxxxxxxxxxxxxx",
                        "retailerId": 123,
                        "name": null
                    }
                ]
            }
        }
    ],
    "warnings": [],
    "errors": []
}

Responses

ResponseErrorMessageDescription
🟢 200Call completed successfully
🔴 400Validation ErrorError deserializing requestOne of the parameters provided in the request does not match the format accepted. Check the error details and the parameters informed in the call
🔴 403Authorization ErrorResource access forbidden: does not have permissionsAPI user does not have the authorization to make requests to the account ID. For an authorization request, follow the authorization request steps