GET
/
analytics
/
series
/
{type}
curl -X GET \
 /analytics/series/{type} \
 --header "Authorization: Bearer <token>"
{
  "data": [
    {
      "date": "2023-09-10 00:00:00+00:00",
      "revenue": "1000.00",
      "tax": "190.00",
      "gross": "1190.00"
    }
  ],
  "meta": {
    "pagination": {
      "totalItems": 123,
      "itemsPerPage": 123,
      "currentPage": 123,
      "lastPage": 123,
      "pageTotalItems": 123
    }
  }
}

Authorizations

Authorization
string
header
required

Value for the Authorization header parameter.

Path Parameters

type
enum<string>
required

Type of series data to fetch

Available options:
customer,
offer,
subscription,
revenue,
signed-offer,
open-offer

Response

200
application/json
AnalyticsSeries collection
data
object[]
meta
object