# sendings - find sending by reporting_id

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /v1/reporting/query:
    post:
      summary: sendings - find sending by reporting_id
      deprecated: false
      description: ''
      tags:
        - API Reference/Reporting API/Reports/Sendings/Examples
      parameters:
        - name: Content-Type
          in: header
          description: '[Details](doc-341635)'
          required: true
          example: application/json
          schema:
            type: string
            default: application/json
            const: application/json
        - name: X-User-Agent
          in: header
          description: Arbitrary identifier of your client. [Details](doc-341635)
          required: true
          example: '{{X_USER_AGENT}}'
          schema:
            type: string
            default: '{{X_USER_AGENT}}'
        - name: X-Product-Name
          in: header
          description: API Product for API context. [Details](doc-341635)
          required: true
          example: '{{PRODUCT_NAME}}'
          schema:
            type: string
            default: '{{PRODUCT_NAME}}'
        - name: X-Customer
          in: header
          description: Customer for API context.  [Details](doc-342139)
          required: false
          example: '{{CUSTOMER_ID}}'
          schema:
            type: string
            default: '{{CUSTOMER_ID}}'
        - name: Authorization
          in: header
          description: '[Member](doc-342129) or [User](doc-342130) Authorization.'
          required: false
          example: Bearer {{_OAUTH_TOKEN}}
          schema:
            type: string
            default: Bearer {{_OAUTH_TOKEN}}
        - name: X-Client-Authorization
          in: header
          description: '[Token](doc-342128) Authorization.'
          example: '{{API_TOKEN}}'
          schema:
            type: string
            default: '{{API_TOKEN}}'
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                report:
                  type: string
                filter:
                  type: string
                aggregate_by:
                  type: string
                page_info:
                  type: string
                limit:
                  type: string
              required:
                - report
              x-apidog-orders:
                - report
                - filter
                - aggregate_by
                - page_info
                - limit
            example:
              report: sendings
              filter:
                type: equal
                field: reporting_id
                value: 7265
              aggregate_by: reporting_id
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  records:
                    type: array
                    items:
                      type: object
                      properties:
                        reporting_id:
                          type: integer
                        service_type:
                          type: string
                        ids:
                          type: array
                          items:
                            type: integer
                        dispatches_count:
                          type: integer
                        members_count:
                          type: integer
                        new_count:
                          type: integer
                        delivered_count:
                          type: integer
                        delivery_errored_count:
                          type: integer
                        failed_count:
                          type: integer
                        opened_count:
                          type: integer
                        opened_events_count:
                          type: integer
                        transiently_failed_count:
                          type: integer
                        transmitted_count:
                          type: integer
                        first_created_at:
                          type: string
                        last_created_at:
                          type: string
                        timeseries_time_ranges:
                          type: object
                          properties:
                            1h:
                              type: object
                              properties:
                                from:
                                  type: string
                                to:
                                  type: string
                              required:
                                - from
                                - to
                              x-apidog-orders:
                                - from
                                - to
                            1d:
                              type: object
                              properties:
                                from:
                                  type: string
                                to:
                                  type: string
                              required:
                                - from
                                - to
                              x-apidog-orders:
                                - from
                                - to
                            1w:
                              type: object
                              properties:
                                from:
                                  type: string
                                to:
                                  type: string
                              required:
                                - from
                                - to
                              x-apidog-orders:
                                - from
                                - to
                            1mo:
                              type: object
                              properties:
                                from:
                                  type: string
                                to:
                                  type: string
                              required:
                                - from
                                - to
                              x-apidog-orders:
                                - from
                                - to
                          required:
                            - 1h
                            - 1d
                            - 1w
                            - 1mo
                          x-apidog-orders:
                            - 1h
                            - 1d
                            - 1w
                            - 1mo
                      x-apidog-orders:
                        - reporting_id
                        - service_type
                        - ids
                        - dispatches_count
                        - members_count
                        - new_count
                        - delivered_count
                        - delivery_errored_count
                        - failed_count
                        - opened_count
                        - opened_events_count
                        - transiently_failed_count
                        - transmitted_count
                        - first_created_at
                        - last_created_at
                        - timeseries_time_ranges
                  pagination:
                    type: object
                    properties:
                      next_page_info:
                        type: 'null'
                    required:
                      - next_page_info
                    x-apidog-orders:
                      - next_page_info
                  result_type:
                    type: string
                required:
                  - records
                  - pagination
                  - result_type
                x-apidog-orders:
                  - records
                  - pagination
                  - result_type
              example:
                records:
                  - reporting_id: 7265
                    service_type: campaigns
                    ids:
                      - 40689
                    dispatches_count: 73
                    members_count: 73
                    new_count: 0
                    delivered_count: 72
                    delivery_errored_count: 1
                    failed_count: 0
                    opened_count: 0
                    opened_events_count: 0
                    transiently_failed_count: 0
                    transmitted_count: 73
                    first_created_at: '2025-08-06T09:00:31.423979'
                    last_created_at: '2025-08-06T09:00:31.423979'
                    timeseries_time_ranges:
                      1h:
                        from: '2025-08-06T09:00:00.000000Z'
                        to: '2025-08-08T09:00:31.423979Z'
                      1d:
                        from: '2025-08-06T00:00:00.000000Z'
                        to: '2025-08-08T09:00:31.423979Z'
                      1w:
                        from: '2025-08-04T00:00:00.000000Z'
                        to: '2025-08-08T09:00:31.423979Z'
                      1mo:
                        from: '2025-08-01T00:00:00.000000Z'
                        to: '2025-08-08T09:00:31.423979Z'
                pagination:
                  next_page_info: null
                result_type: records
          headers: {}
          x-apidog-name: Success
      security: []
      x-apidog-folder: API Reference/Reporting API/Reports/Sendings/Examples
      x-apidog-status: released
      x-run-in-apidog: https://app.eu.apidog.com/web/project/346351/apis/api-3903116-run
components:
  schemas: {}
  securitySchemes: {}
servers:
  - url: https://api.mpc.dev.placewise.com
    description: Staging
security: []

```