Skip to content
v1.0.0
OAS 3.0.3

Plugin Usage API

This endpoint is called by the Stripo to send counter updates for timer views and unique emails remaining for a plugin.

Server:
Client Libraries

Receive plugin counter data

Receives webhook notifications about plugin usage counters including remaining timer views and unique emails.

Body
required
application/json

Plugin counter data containing remaining limits

Contains the remaining counter values for a plugin

  • timerViewsLeft
    Type: integer | nullFormat: int64

    Number of timer views remaining for the plugin.

  • uniqueEmailsLeft
    Type: integer | nullFormat: int64

    Number of unique emails remaining for the plugin.

Responses
  • 200

    Webhook received successfully

Request Example for post/
curl / \
  --request POST \
  --header 'Content-Type: application/json' \
  --data '{
  "timerViewsLeft": 1000,
  "uniqueEmailsLeft": 500
}'
No Body

Models