Placewise API
Get startedExplore
Get startedExplore
Performance Cloud 🗗
Placewise 🗗
ExplorePublic APIManagement APIUsers APIOperations APIMessaging APIReporting API
ML APIData API
ExplorePublic APIManagement APIUsers APIOperations APIMessaging APIReporting API
ML APIData API
  1. Examples
  • Introduction
  • Filter parameter specification
  • Data formats
    • Records
    • Timeseries
  • Reports
    • Members
      • members (records)
      • members_count (records)
      • members_grouped_count (records)
      • member_balance (timeseries)
      • members_count_snapshot (timeseries)
      • members_count_history (timeseries)
    • Sendings
      • sendings (records)
      • sendings_events_history (timeseries)
      • sendings_recipients_statistics (timeseries)
      • sendings_links (records)
      • sendings_links_stats (records)
      • Examples
        • sendings - find sending by reporting_id
          POST
        • sendings_events_history - show sending events
          POST
        • sendings_recipients_statistics - show recipients by age groups
          POST
    • Links
      • links_visits_history (timeseries)
  • Geo API
    • Find Locations Coordinates
      POST
    • List places
      POST
    • Show place
      GET
  • Metadata
    POST
  • Field metadata
    POST
  • Query (records)
    POST
  • Query (timeseries)
    POST
  • Query (records) export
    POST
  • Query (timeseries) export
    POST
  • Tenants query (records) export
    POST
  • Tenants query (timeseries) export
    POST
  1. Examples

sendings - find sending by reporting_id

POST
https://api.mpc.dev.placewise.com/v1/reporting/query
API Permit:Reporting:Api:Query
API Context:Customer
Authorizations:UserToken

Request

Header Params

Body Params application/json

Example
{
    "report": "sendings",
    "filter": {
        "type": "equal",
        "field": "reporting_id",
        "value": 7265
    },
    "aggregate_by": "reporting_id"
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C#
Ruby
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.mpc.dev.placewise.com/v1/reporting/query' \
--header 'X-User-Agent;' \
--header 'X-Product-Name;' \
--header 'X-Customer;' \
--header 'Authorization: Bearer ' \
--header 'X-Client-Authorization: ' \
--header 'Content-Type: application/json' \
--data-raw '{
    "report": "sendings",
    "filter": {
        "type": "equal",
        "field": "reporting_id",
        "value": 7265
    },
    "aggregate_by": "reporting_id"
}'

Responses

🟢200Success
application/json
Body

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"
}
Previous
sendings_links_stats (records)
Next
sendings_events_history - show sending events
Built with