POST
/
v1
/
cards
/
{cardId}
/
metrics
curl --request POST \
  --url https://api.vistaly.com/v1/cards/{cardId}/metrics \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "timestamp": "2023-11-07T05:31:56Z",
  "value": 123
}'
{
  "message": "Metric datapoint created"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

cardId
string
required

The unique identifier for the card whose metrics are being submitted.

Body

application/json
value
number
required

The value of the metric (e.g., count of views or clicks)

timestamp
string

The timestamp of the metric (defaults to current timestamp if not provided)

Response

200
application/json
Metrics submitted successfully
message
string
Example:

"System provided message"