Releva has completed an $870,000 financial round led by New Vision Fund 3 with participation by HR Capital AD, Verto Invest and the investment arm of private investors.
Releva завърши финансов рунд от $870 000, воден от Фонд Ню Вижън 3 с участието на Ейч Ар Капитал АД, Верто Инвест и подкрепата на частни инвеститори.
Search the Documentations
Categories

Shop Usage

The shop usage API returns the usage data for your shop.

Request Parameters

You may perform requests to the API using the following curl equivalent:

curl -H 'Content-Type: application/json' -H 'Authorization: Bearer <secretKey>' -XPOST https://releva.ai/api/v0/usage -d'{
    "fromDate": "2021-03-01T00:00:00.000Z",
   "toDate": "2021-04-01T00:00:00.000Z"
}'

Request Body

FieldTypeDescription
fromDateISO-8601 String (Optional)The start date of the usage data (inclusive)
toDateISO-8601 String (Optional)The end date of the usage data (exclusive)

A successful response will return HTTP Status 200 and a JSON body with the following structure:

{"usage":{"textMessageSends":0,"pushNotificationSends":0,"pageViews":0,"emailSends":0}}

Response Format

An error response will return a HTTP 4xx or 5xx status code and have the following structure:

{
  "message": "A description of the error and how to fix it, if it's a client error."
}
Next Email Stats
Table of Contents