Criteo Segment API

The Segment API from Criteo — 7 operation(s) for segment.

Operations 7

PATCH /2026-01/commerce-grid/audience-segments /2026-01/commerce-grid/audience-segments #
POST /2026-01/commerce-grid/audience-segments/{audience-segment-id}/contact-list/add-remove /2026-01/commerce-grid/audience-segments/{audience-segment-id}/contact-list/add-remove #
POST /2026-01/commerce-grid/audience-segments/{audience-segment-id}/contact-list/clear /2026-01/commerce-grid/audience-segments/{audience-segment-id}/contact-list/clear #
GET /2026-01/commerce-grid/audience-segments/{audience-segment-id}/contact-list/statistics /2026-01/commerce-grid/audience-segments/{audience-segment-id}/contact-list/statistics #
POST /2026-01/commerce-grid/audience-segments/create /2026-01/commerce-grid/audience-segments/create #
POST /2026-01/commerce-grid/audience-segments/delete /2026-01/commerce-grid/audience-segments/delete #
POST /2026-01/commerce-grid/audience-segments/search /2026-01/commerce-grid/audience-segments/search #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/criteo-segment-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

criteo-segment-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Criteo Segment API
  description: Criteo API - CommerceGrid
  version: 2026-01
servers:
- url: https://api.criteo.com
security:
- oauth: []
tags:
- name: Segment
paths:
  /2026-01/commerce-grid/audience-segments:
    patch:
      tags:
      - Segment
      summary: /2026-01/commerce-grid/audience-segments
      description: Updates the properties of all segments with a valid configuration, and returns the full segments. For those that cannot be updated, one or multiple errors are returned.
      operationId: bulkUpdateAudienceSegments
      requestBody:
        description: Segment Update request
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CgAudienceSegmentBulkUpdateInputV1'
        required: true
        x-bodyName: request
      responses:
        '200':
          description: Success or partial success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CgAudienceSegmentEntityV1ListResponse'
      security:
      - oauth:
        - CommerceGrid_Segment_Manage
  /2026-01/commerce-grid/audience-segments/{audience-segment-id}/contact-list/add-remove:
    post:
      tags:
      - Segment
      summary: /2026-01/commerce-grid/audience-segments/{audience-segment-id}/contact-list/add-remove
      description: Add/remove identifiers to or from a Commerce Grid audience segment of type Contact List.
      operationId: AddRemoveContactListByAudienceSegment
      parameters:
      - name: audience-segment-id
        in: path
        description: The ID of the audience segment of type contact list to amend
        required: true
        schema:
          type: string
          format: int64
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CommerceGridContactlistAmendmentRequest'
        required: true
        x-bodyName: body
      responses:
        '200':
          description: Summary of the add/remove operation of identifiers
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CommerceGridContactlistOperation'
              example:
                data:
                  type: AddRemoveContactlistResult
                  attributes:
                    contactListId: 568708742535471104
                    operation: add
                    requestDate: '2018-12-10T10:00:50.0000000+00:00'
                    identifierType: madid
                    nbValidIdentifiers: 7343
                    nbInvalidIdentifiers: 13
                    sampleInvalidIdentifiers:
                    - InvalidIdentifier
                errors:
                - traceId: 667ac683ac797284.667ac683ac797284<:667ac683ac797284
                  type: availability
                  code: internal-error
                  instance: ''
                  title: Internal error
                warnings:
                - traceId: 56ed4096-f96a-4944-8881-05468efe0ec9
                  type: deprecation
                  code: deprecated-field
                  instance: /audiences/314195
                  title: '''nbValidIds'' is deprecated'
                  detail: The field 'nbValidIds' is deprecated please use 'nbValidIdentifiers'
      security:
      - oauth:
        - CommerceGrid_Segment_Manage
  /2026-01/commerce-grid/audience-segments/{audience-segment-id}/contact-list/clear:
    post:
      tags:
      - Segment
      summary: /2026-01/commerce-grid/audience-segments/{audience-segment-id}/contact-list/clear
      description: Delete all identifiers from a Commerce Grid audience segment of type Contact List.
      operationId: ClearContactListByAudienceSegment
      parameters:
      - name: audience-segment-id
        in: path
        description: The ID of the audience segment of type contact list to amend
        required: true
        schema:
          type: string
          format: int64
      responses:
        '204':
          description: The Contact List identifiers were deleted
          content:
            application/json: {}
      security:
      - oauth:
        - CommerceGrid_Segment_Manage
  /2026-01/commerce-grid/audience-segments/{audience-segment-id}/contact-list/statistics:
    get:
      tags:
      - Segment
      summary: /2026-01/commerce-grid/audience-segments/{audience-segment-id}/contact-list/statistics
      description: Returns the statistics of a contact list segment.
      operationId: getAudienceSegmentContactListStatistics
      parameters:
      - name: audience-segment-id
        in: path
        description: The segment ID.
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CgContactListStatisticsEntityV1Response'
      security:
      - oauth:
        - CommerceGrid_Segment_Read
  /2026-01/commerce-grid/audience-segments/create:
    post:
      tags:
      - Segment
      summary: /2026-01/commerce-grid/audience-segments/create
      description: Creates all segments with a valid configuration, and returns the full segments. For those that cannot be created, one or multiple errors are returned.
      operationId: bulkCreateAudienceSegments
      requestBody:
        description: Segment creation parameter
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CgAudienceSegmentBulkCreateInputV1'
        required: true
        x-bodyName: request
      responses:
        '200':
          description: Success or partial success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CgAudienceSegmentEntityV1ListResponse'
      security:
      - oauth:
        - CommerceGrid_Segment_Manage
  /2026-01/commerce-grid/audience-segments/delete:
    post:
      tags:
      - Segment
      summary: /2026-01/commerce-grid/audience-segments/delete
      description: Delete the segments associated to the given IDs.
      operationId: bulkDeleteAudienceSegments
      requestBody:
        description: Segment delete request.
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CgAudienceSegmentBulkDeleteInputV1'
        required: true
        x-bodyName: request
      responses:
        '200':
          description: Success or partial success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CgAudienceSegmentIdEntityV1ListResponse'
      security:
      - oauth:
        - CommerceGrid_Segment_Manage
  /2026-01/commerce-grid/audience-segments/search:
    post:
      tags:
      - Segment
      summary: /2026-01/commerce-grid/audience-segments/search
      description: Returns a list of segments that match the provided filters. If present, the filters are AND'ed together when applied.
      operationId: searchAudienceSegments
      parameters:
      - name: limit
        in: query
        description: The number of elements to be returned. The default is 50 and the maximum is 100.
        schema:
          maximum: 100
          minimum: 0
          type: integer
          format: int32
          default: 50
      - name: offset
        in: query
        description: The (zero-based) offset into the collection. The default is 0.
        schema:
          type: integer
          format: int32
          default: 0
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CgAudienceSegmentSearchInputV1'
        required: true
        x-bodyName: request
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CgAudienceSegmentEntityV1CgAudienceSegmentSearchMetadataV1ListResponse'
      security:
      - oauth:
        - CommerceGrid_Segment_Read
components:
  schemas:
    CommonProblem:
      type: object
      properties:
        code:
          type:
          - string
          - 'null'
          description: A machine-readable error code, expressed as a string value.
        detail:
          type:
          - string
          - 'null'
          description: A human-readable explanation specific to this occurrence of the problem
        instance:
          type:
          - string
          - 'null'
          description: A URI that identifies the specific occurrence of the problem.
        source:
          type:
          - object
          - 'null'
          additionalProperties:
            type: string
          description: A machine-readable structure to reference to the exact location(s) causing the error(s)
        stackTrace:
          type:
          - string
          - 'null'
          description: ''
        title:
          type:
          - string
          - 'null'
          description: A short human-readable description of the problem type
        traceId:
          type:
          - string
          - 'null'
          description: The request correlation ID this problem comes from.
        traceIdentifier:
          type:
          - string
          - 'null'
          description: The request correlation ID this problem comes from. (deprecated, use traceId instead)
        type:
          enum:
          - unknown
          - access-control
          - authentication
          - authorization
          - availability
          - deprecation
          - quota
          - validation
          type:
          - string
          - 'null'
          description: The problem's category.
      description: Common problem object.
    CgContactListStatisticsEntityV1:
      type:
      - object
      - 'null'
      properties:
        matchRate:
          type:
          - number
          - 'null'
          description: 'Percentage of matched identifiers in the contact list.

            Can differ from matches/identifiers depending on the contact list type.'
          format: double
        numberOfIdentifiers:
          type:
          - integer
          - 'null'
          description: Number of identifiers in the contact list.
          format: int32
        numberOfMatches:
          type:
          - integer
          - 'null'
          description: Number of matched identifiers in the contact list.
          format: int32
      description: Contact list statistics.
      x-criteo-canonical:
        infoType: entity
        name: ContactListStatistics
        version: v1
    CgAudienceSegmentUpdateEntityV1Resource:
      type: object
      properties:
        attributes:
          $ref: '#/components/schemas/CgAudienceSegmentUpdateEntityV1'
        id:
          type: string
          description: Id of the entity
        type:
          type: string
      description: A class that represents a domain entity exposed by an API
    CommerceGridContactlistOperationResponseAttributes:
      required:
      - attributes
      properties:
        type:
          type:
          - string
          - 'null'
          description: Contact List
          example: AddRemoveContactlist
        attributes:
          required:
          - operation
          type: object
          properties:
            contactListId:
              type:
              - integer
              - 'null'
              description: the affected contact list ID
              format: int64
              readOnly: true
            identifierType:
              type:
              - string
              - 'null'
              description: The schema specified for of the identifiers
              readOnly: true
            nbInvalidIdentifiers:
              type:
              - integer
              - 'null'
              description: How many identifiers were invalid for the specified schema
              format: int32
              readOnly: true
            nbValidIdentifiers:
              type:
              - integer
              - 'null'
              description: How many identifiers were valid for the specified schema
              format: int32
              readOnly: true
            operation:
              type: string
              description: The action recorded
            requestDate:
              type:
              - string
              - 'null'
              description: When the action was recorded
              format: date-time
              readOnly: true
            sampleInvalidIdentifiers:
              type:
              - array
              - 'null'
              items:
                type: string
              description: A sample of invalid identifiers if there is some
              readOnly: true
          description: Attributes of Commerce Grid contact list amendment
      description: Response data of Commerce Grid contact list amendment
    CgAudienceSegmentEntityV1ListResponse:
      type: object
      properties:
        data:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/CgAudienceSegmentEntityV1Resource'
        errors:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/CommonProblem'
          readOnly: true
        warnings:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/CommonProblem'
          readOnly: true
      description: A top-level object that encapsulates a Criteo API response for several entities
    CgAudienceSegmentSearchMetadataV1:
      type:
      - object
      - 'null'
      properties:
        limit:
          type:
          - integer
          - 'null'
          description: Max item of the current page
          format: int32
        offset:
          type:
          - integer
          - 'null'
          description: Number of item to skip
          format: int32
        totalItems:
          type:
          - integer
          - 'null'
          description: Total number of items
          format: int32
      description: Metadata for the audience segment search response.
    CgContactListStatisticsEntityV1Response:
      type: object
      properties:
        data:
          $ref: '#/components/schemas/CgContactListStatisticsEntityV1Resource'
        errors:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/CommonProblem'
          readOnly: true
        warnings:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/CommonProblem'
          readOnly: true
      description: A top-level object that encapsulates a Criteo API response for a single entity
    CgAudienceSegmentEntityV1:
      type:
      - object
      - 'null'
      properties:
        contactList:
          $ref: '#/components/schemas/CgContactListV1'
        createdAt:
          type:
          - string
          - 'null'
          description: ISO-8601 timestamp in UTC of segment creation (read-only)
          format: date-time
        dataProviderId:
          type:
          - string
          - 'null'
          description: Data provider associated to the segment (read-only)
        description:
          type:
          - string
          - 'null'
          description: Description of the segment
        name:
          type:
          - string
          - 'null'
          description: Name of the segment
        remoteId:
          type:
          - string
          - 'null'
          description: The ID used to identify the segment in the data provider's system (read-only)
        type:
          enum:
          - Unknown
          - ContactList
          type:
          - string
          - 'null'
          description: Type of segment (read-only)
        updatedAt:
          type:
          - string
          - 'null'
          description: ISO-8601 timestamp in UTC of segment update (read-only)
          format: date-time
      description: Set of rules that defines specific people to target.
      x-criteo-canonical:
        infoType: entity
        name: CommerceGridAudienceSegment
        version: v1
    CgAudienceSegmentIdEntityV1ListResponse:
      type: object
      properties:
        data:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/CgAudienceSegmentIdEntityV1Resource'
        errors:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/CommonProblem'
          readOnly: true
        warnings:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/CommonProblem'
          readOnly: true
      description: A top-level object that encapsulates a Criteo API response for several entities
    CgAudienceSegmentBulkDeleteInputV1:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/CgAudienceSegmentDeleteEntityV1Resource'
      description: A top-level object that encapsulates a Criteo API request for several entities.
    CgAudienceSegmentSearchEntityV1Resource:
      type: object
      properties:
        attributes:
          $ref: '#/components/schemas/CgAudienceSegmentSearchEntityV1'
        type:
          type: string
      description: A top-level object that encapsulates a Criteo API response for a single value
    CgContactListV1:
      type:
      - object
      - 'null'
      description: Settings to target users with your contact lists.
    CgAudienceSegmentCreateEntityV1Resource:
      type: object
      properties:
        attributes:
          $ref: '#/components/schemas/CgAudienceSegmentCreateEntityV1'
        type:
          type: string
      description: A top-level object that encapsulates a Criteo API response for a single value
    CommerceGridContactlistAmendment:
      required:
      - attributes
      type: object
      properties:
        attributes:
          required:
          - identifiers
          - operation
          type: object
          properties:
            identifiers:
              type: array
              items:
                type: string
              description: The users to add or remove, each in the schema specified
            identifierType:
              enum:
              - Email
              - MadId
              - UserIdentifier
              - IdentityLink
              - BidSwitchId
              - FTrackId
              - PanoramaId
              - HadronId
              - IpAddressV4
              - PageUrl
              - PageDomain
              - AppId
              type: string
              description: What type of identifiers are used
            operation:
              enum:
              - Add
              - Remove
              type: string
              description: Whether to add or remove users
          description: Attributes of Commerce Grid contact list amendment
        type:
          type: string
          description: Contact List
          example: AddRemoveContactlist
      description: Request data of Commerce Grid contact list amendment
    CommerceGridContactlistAmendmentRequest:
      required:
      - data
      type: object
      properties:
        data:
          $ref: '#/components/schemas/CommerceGridContactlistAmendment'
      description: Request of Commerce Grid contact list
    CgAudienceSegmentSearchEntityV1:
      type: object
      properties:
        audienceSegmentIds:
          type: array
          items:
            type: string
          description: List of segment ids
        audienceSegmentTypes:
          type: array
          items:
            enum:
            - Unknown
            - ContactList
            type: string
          description: List of segment types
        dataProviderIds:
          type: array
          items:
            type: string
          description: List of data provider ids
        remoteIds:
          type: array
          items:
            type: string
          description: List of ids used to identify the segment in the data provider's system
      description: Available filters to perform a search on audience segments. If present, the filters are AND'ed together when applied.
    CgAudienceSegmentDeleteEntityV1:
      type: object
      description: Segment to delete
      x-criteo-canonical:
        infoType: entity
        name: CommerceGridAudienceSegment
        version: v1
    NillableString:
      type:
      - object
      - 'null'
      properties:
        value:
          type:
          - string
          - 'null'
          description: The string's value. If missing or null the string's value is set to "null"
      description: Placeholder object for string value  for which "null" is a valid business value
    AudienceWarning:
      required:
      - code
      - detail
      - instance
      - type
      type: object
      properties:
        code:
          type: string
          description: (REQUIRED) A machine-readable unique error code, expressed as a string value. The format used must be kebab-case.
        detail:
          type: string
          description: (REQUIRED) A human-readable explanation specific to this occurrence of the problem
        instance:
          type: string
          description: (REQUIRED) A URI reference that identifies the specific occurrence of the problem
        source:
          type:
          - object
          - 'null'
          description: (OPTIONAL) A machine-readable structure to reference to the exact location(s) causing the error(s)
        stackTrace:
          type:
          - array
          - 'null'
          items:
            type: string
          description: (NEVER IN PRODUCTION) A human-readable stacktrace produced by the implementation technology
        title:
          type:
          - string
          - 'null'
          description: (RECOMMENDED) A short, human-readable summary of the problem type
        traceId:
          type:
          - string
          - 'null'
          description: (REQUIRED) The Correlation ID provided by the Gateway. It is also a unique identifier for this particular occurrence of the problem.
        type:
          enum:
          - access-control
          - authentication
          - authorization
          - availability
          - deprecation
          - quota
          - validation
          type: string
          description: (REQUIRED) The classification of the error
      description: Definition of the warning
    CgAudienceSegmentBulkCreateInputV1:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/CgAudienceSegmentCreateEntityV1Resource'
      description: A top-level object that encapsulates a Criteo API request for several values.
    CgAudienceSegmentDeleteEntityV1Resource:
      type: object
      properties:
        attributes:
          $ref: '#/components/schemas/CgAudienceSegmentDeleteEntityV1'
        id:
          type: string
          description: Id of the entity
        type:
          type: string
      description: A class that represents a domain entity exposed by an API
    CgAudienceSegmentSearchInputV1:
      type: object
      properties:
        data:
          $ref: '#/components/schemas/CgAudienceSegmentSearchEntityV1Resource'
      description: A top-level object that encapsulates a Criteo API request for a single value.
    CgContactListStatisticsEntityV1Resource:
      type:
      - object
      - 'null'
      properties:
        attributes:
          $ref: '#/components/schemas/CgContactListStatisticsEntityV1'
        id:
          type:
          - string
          - 'null'
          description: Id of the entity
        type:
          type:
          - string
          - 'null'
      description: A class that represents a domain entity exposed by an API
    CgAudienceSegmentIdEntityV1:
      type:
      - object
      - 'null'
      description: Audience Segment entity only with its ID
      x-criteo-canonical:
        infoType: entity
        name: CommerceGridAudienceSegment
        version: v1
    CgContactListCreateV1:
      type: object
      properties:
        remoteId:
          type: string
          description: The ID owned by the client and used to identify the Audience Segment.
      description: Settings to target users with your contact lists.
    CgAudienceSegmentUpdateEntityV1:
      type: object
      properties:
        description:
          $ref: '#/components/schemas/NillableString'
        name:
          type: string
          description: Name of the segment
      description: Set of rules that defines specific people to target.
      x-criteo-canonical:
        infoType: entity
        name: CommerceGridAudienceSegment
        version: v1
    CgAudienceSegmentEntityV1CgAudienceSegmentSearchMetadataV1ListResponse:
      type: object
      properties:
        data:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/CgAudienceSegmentEntityV1Resource'
        errors:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/CommonProblem'
          readOnly: true
        meta:
          $ref: '#/components/schemas/CgAudienceSegmentSearchMetadataV1'
        warnings:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/CommonProblem'
          readOnly: true
      description: A top-level object that encapsulates a Criteo API response for several entities and metadata
    CgAudienceSegmentCreateEntityV1:
      required:
      - dataProviderId
      - name
      type: object
      properties:
        contactList:
          $ref: '#/components/schemas/CgContactListCreateV1'
        dataProviderId:
          type: string
          description: Data provider associated to the segment
        description:
          type: string
          description: Description of the segment
        name:
          type: string
          description: Name of the segment
      description: Set of rules that defines specific people to target.
    CgAudienceSegmentIdEntityV1Resource:
      type: object
      properties:
        attributes:
          $ref: '#/components/schemas/CgAudienceSegmentIdEntityV1'
        id:
          type:
          - string
          - 'null'
          description: Id of the entity
        type:
          type:
          - string
          - 'null'
      description: A class that represents a domain entity exposed by an API
    CgAudienceSegmentBulkUpdateInputV1:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/CgAudienceSegmentUpdateEntityV1Resource'
      description: A top-level object that encapsulates a Criteo API request for several entities.
    CgAudienceSegmentEntityV1Resource:
      type: object
      properties:
        attributes:
          $ref: '#/components/schemas/CgAudienceSegmentEntityV1'
        id:
          type:
          - string
          - 'null'
          description: Id of the entity
        type:
          type:
          - string
          - 'null'
      description: A class that represents a domain entity exposed by an API
    AudienceError:
      required:
      - code
      - instance
      - type
      type: object
      properties:
        code:
          type: string
          description: (REQUIRED) A machine-readable unique error code, expressed as a string value. The format used must be kebab-case.
        detail:
          type:
          - string
          - 'null'
          description: (RECOMMENDED) A human-readable explanation specific to this occurrence of the problem
        instance:
          type: string
          description: (REQUIRED) A URI reference that identifies the specific occurrence of the problem
        source:
          type:
          - object
          - 'null'
          description: (OPTIONAL) A machine-readable structure to reference to the exact location(s) causing the error(s)
        stackTrace:
          type:
          - array
          - 'null'
          items:
            type: string
          description: (NEVER IN PRODUCTION) A human-readable stacktrace produced by the implementation technology
        title:
          type:
          - string
          - 'null'
          description: (RECOMMENDED) A short, human-readable summary of the problem type
        traceId:
          type:
          - string
          - 'null'
          description: (REQUIRED) The Correlation ID provided by the Gateway. It is also a unique identifier for this particular occurrence of the problem.
        type:
          enum:
          - access-control
          - authentication
          - authorization
          - availability
          - deprecation
          - quota
          - validation
          type: string
          description: (REQUIRED) The classification of the error
      description: Definition of an audience error
    CommerceGridContactlistOperation:
      required:
      - data
      - errors
      - warnings
      type: object
      properties:
        data:
          $ref: '#/components/schemas/CommerceGridContactlistOperationResponseAttributes'
        errors:
          type: array
          items:
            $ref: '#/components/schemas/AudienceError'
        warnings:
          type: array
          items:
            $ref: '#/components/schemas/AudienceWarning'
      description: Operation on Commerce Grid contact list
  securitySchemes:
    oauth:
      type: oauth2
      flows:
        clientCredentials:
          tokenUrl: https://api.criteo.com/oauth2/token
          scopes: {}
        authorizationCode:
          authorizationUrl: https://api.criteo.com/oauth2
          tokenUrl: https://api.criteo.com/oauth2/token
          scopes: {}
x-samples-languages:
- java
- python
- php
- csharp
- javascript
- curl
- ruby