> ## 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.

# /2026-01/retail-media/billing/partner-report

> Create a Partner Billing Report request.



## OpenAPI

````yaml https://api.criteo.com/2026-01/retailmedia/open-api-specifications.json post /2026-01/retail-media/billing/partner-report
openapi: 3.0.1
info:
  title: Criteo API
  description: Criteo API - RetailMedia
  version: 2026-01
servers:
  - url: https://api.criteo.com
security:
  - oauth: []
tags:
  - name: Accounts
  - name: Analytics
  - name: Audience
  - name: Balance
  - name: Billing
  - name: Campaign
  - name: Gateway
paths:
  /2026-01/retail-media/billing/partner-report:
    post:
      tags:
        - Billing
      summary: /2026-01/retail-media/billing/partner-report
      description: Create a Partner Billing Report request.
      operationId: CreatePartnerBillingReportRequestV1
      requestBody:
        description: Partner Billing Report request object.
        content:
          application/json:
            schema:
              $ref: >-
                #/components/schemas/ValueResourceInputPartnerBillingReportRequestV1
        required: true
      responses:
        '201':
          description: Success
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/EntityResourceOutcomePartnerBillingReportStatusV1
      security:
        - oauth:
            - RetailMedia_Billing_Read
components:
  schemas:
    ValueResourceInputPartnerBillingReportRequestV1:
      type: object
      properties:
        data:
          $ref: '#/components/schemas/ValueResourcePartnerBillingReportRequestV1'
      additionalProperties: false
      description: >-
        A top-level object that encapsulates a Criteo API request for a single
        value object.
    EntityResourceOutcomePartnerBillingReportStatusV1:
      type: object
      properties:
        data:
          $ref: '#/components/schemas/EntityResourcePartnerBillingReportStatusV1'
        errors:
          type: array
          items:
            $ref: '#/components/schemas/SdkApiRestCommonProblem'
          description: Errors that occured during this call.
          nullable: true
          readOnly: true
        warnings:
          type: array
          items:
            $ref: '#/components/schemas/SdkApiRestCommonProblem'
          description: Warnings that occured during this call.
          nullable: true
          readOnly: true
      additionalProperties: false
      description: >-
        A top-level object that encapsulates a Criteo API response for a single
        entity.
    ValueResourcePartnerBillingReportRequestV1:
      type: object
      properties:
        attributes:
          $ref: '#/components/schemas/PartnerBillingReportRequestV1'
        type:
          type: string
          description: Type of the resource.
          nullable: true
      additionalProperties: false
      description: A value resource exposed by the API.
    EntityResourcePartnerBillingReportStatusV1:
      type: object
      properties:
        attributes:
          $ref: '#/components/schemas/PartnerBillingReportStatusV1'
        id:
          type: string
          description: Unique id of the entity.
          nullable: true
        type:
          type: string
          description: Type of the resource.
          nullable: true
      additionalProperties: false
      description: A domain entity exposed by the API, identified by a unique id.
      nullable: true
    SdkApiRestCommonProblem:
      type: object
      properties:
        code:
          type: string
          description: A machine-readable error code, expressed as a string value.
          nullable: true
        detail:
          type: string
          description: >-
            A human-readable explanation specific to this occurrence of the
            problem.
          nullable: true
        instance:
          type: string
          description: A URI that identifies the specific occurrence of the problem.
          nullable: true
        source:
          type: object
          additionalProperties:
            type: string
          description: >-
            A machine-readable structure to reference to the exact location(s)
            causing the error(s).
          nullable: true
        stackTrace:
          type: string
          description: ''
          nullable: true
        title:
          type: string
          description: A short human-readable description of the problem type.
          nullable: true
        traceId:
          type: string
          description: The request correlation ID this problem comes from.
          nullable: true
        type:
          enum:
            - unknown
            - access-control
            - authentication
            - authorization
            - availability
            - deprecation
            - quota
            - validation
          type: string
          description: The problem's category.
          nullable: true
      additionalProperties: false
      description: Common problem object.
    PartnerBillingReportRequestV1:
      required:
        - endDate
        - startDate
      type: object
      properties:
        accountIds:
          minItems: 1
          type: array
          items:
            type: string
          description: On which accounts the report is created.
          nullable: true
        endDate:
          type: string
          description: End date of the report (ISO 8601 format, e.g. YYYY-MM-DD).
          format: date
        format:
          enum:
            - json
            - csv
          type: string
          description: Format type of the report.
          default: json
        retailerIds:
          minItems: 1
          type: array
          items:
            type: integer
            format: int32
          description: On which retailers the report is created.
          nullable: true
        startDate:
          type: string
          description: Start date of the report (ISO 8601 format, e.g. YYYY-MM-DD).
          format: date
      additionalProperties: false
      description: The request object of a Partner Billing Report.
    PartnerBillingReportStatusV1:
      required:
        - createdAt
        - status
      type: object
      properties:
        createdAt:
          type: string
          description: The date when the report request is created.
          format: date-time
        errorMessage:
          type: string
          description: Possible error message along with the status.
          nullable: true
        status:
          enum:
            - pending
            - success
            - failed
            - expired
          type: string
          description: Status of the report.
      additionalProperties: false
      description: Status info of a Partner Billing Report.
      nullable: true
  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: {}

````