> ## Documentation Index
> Fetch the complete documentation index at: https://developers.criteo.com/llms.txt
> Use this file to discover all available pages before exploring further.

# /experimental/retail-media/line-items/{line-item-id}/submit

> Submits a Commerce Display line item for retailer review, transitioning its eligible reviewable
properties to In Review. A successful submission responds with 204 No Content and an empty body.



## OpenAPI

````yaml https://api.criteo.com/experimental/retailmedia/open-api-specifications.json post /experimental/retail-media/line-items/{line-item-id}/submit
openapi: 3.0.1
info:
  title: Criteo API
  description: Criteo API - RetailMedia
  version: Experimental
servers:
  - url: https://api.criteo.com
security:
  - oauth: []
tags:
  - name: Accounts
  - name: Analytics
  - name: Audience
  - name: Balance
  - name: Campaign
  - name: Catalog
  - name: Gateway
  - name: OnSiteRecommendation
  - name: ThirdPartyAccounts
paths:
  /experimental/retail-media/line-items/{line-item-id}/submit:
    post:
      tags:
        - Campaign
      summary: /experimental/retail-media/line-items/{line-item-id}/submit
      description: "Submits a Commerce Display line item for retailer review, transitioning its eligible reviewable\r\nproperties to In Review. A successful submission responds with 204 No Content and an empty body."
      operationId: SubmitLineItem
      parameters:
        - name: line-item-id
          in: path
          description: The external id of the line item to submit.
          required: true
          schema:
            type: string
      requestBody:
        description: >-
          The submission details, including an optional comment for the
          reviewer.
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SubmitLineItemRequestModelRequest'
      responses:
        '204':
          description: Success
      security:
        - oauth:
            - RetailMedia_Campaign_Manage
components:
  schemas:
    SubmitLineItemRequestModelRequest:
      type: object
      properties:
        data:
          $ref: '#/components/schemas/SubmitLineItemRequestModelResource'
      additionalProperties: false
      description: >-
        A top-level object that encapsulates a Criteo API request for a single
        value object.
    SubmitLineItemRequestModelResource:
      type: object
      properties:
        attributes:
          $ref: '#/components/schemas/SubmitLineItemRequestModel'
        type:
          type: string
          description: Type of the resource.
          nullable: true
      additionalProperties: false
      description: A value resource exposed by the API.
    SubmitLineItemRequestModel:
      type: object
      properties:
        comment:
          maxLength: 255
          type: string
          description: Optional comment for the retailer reviewing the line item.
          nullable: true
      additionalProperties: false
      description: Details supplied when submitting a line item for retailer review.
  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: {}

````