Retrieve unique users
GET/metrics/unique-users
Retrieve unique users
Request
Query Parameters
from date
The date to search from (inclusive)
to date
The date to search up to (inclusive)
Header Parameters
X-SaleCycle-Id stringrequired
Your SaleCycle API Subscription key
Responses
- 200
- 400
Successful operation
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
data object[]required
date date-time
count integer
meta object
timeRange object
from date-time
to date-time
{
"data": [
{
"date": "2020-01-01T00:00:00.000Z",
"count": 1
}
],
"meta": {
"timeRange": {
"from": "2024-07-29T15:51:28.071Z",
"to": "2024-07-29T15:51:28.071Z"
}
}
}
Validation Error
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
errors object[]required
status stringrequired
title stringrequired
detail stringrequired
{
"errors": [
{
"status": "string",
"title": "string",
"detail": "string"
}
]
}
Loading...