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. Data formats
  • 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
        • sendings_events_history - show sending events
        • sendings_recipients_statistics - show recipients by age groups
    • 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. Data formats

Records

Records format is a paginated format which is returned for "current" state of data.
{
    "records": [
        {
            "id": 4066131,
            "community_id": 235
        },
        {
            "id": 4066135,
            "community_id": 235
        }
    ],
    "pagination": {
        "next_page_info": "CNOW-AE"
    },
    "result_type": "records"
}

Pagination#

Single query can return at most 100 records. The pagination is done via a cursor.
Each query response returns pagination object. E.g.:
   ...
   "pagination": {
        "next_page_info": "CNOW-AE"
    },
   ...
In order to fetch next page, you need to make same request with page_info paramater set to value of next_page_info.
When next_page_info is empty - it means that there is no more pages available.

Other parameters#

limit - allows to change size of returned data. Maximum allowed value is 100
sort_by - allows to choose field in which order records will be returned. Note that this field must be allowed to be sorted by in the report (it's returned in Metadata endpoint as sortable_fields
sort_direction - allows to change sorting direction. Allowed values: ASC, DESC
Previous
Filter parameter specification
Next
Timeseries
Built with