Create click

POST /v2/client/clicks

Creates a click and returns the click id without redirecting.

Query parameters

  • s string Required

    session id

  • i string Required

    impression id

  • tags string(URL-encoded query)

    Optional set of key-value pairs to be passed back in callbacks. Max 10 pairs with both key and value up to 50 characters long. Keys and values are trimmed and lower-cased. Keys can only contain alphanumeric characters and underscores. Values can contain any characters. If you need to pass sensitive information, note that users can potentially manipulate this data.

  • sc_token string

    optional token for survey deduplication

Responses

  • 200 application/json

    OK

    Hide response attribute Show response attribute object
    • data object
      Hide data attribute Show data attribute
      • id string Required
POST /v2/client/clicks
curl \
 -X POST https://api.bitlabs.ai/v2/client/clicks?s=string&i=string
Response examples (200)
{
  "data": {
    "id": "edf06866-e477-40a6-8287-ff987863e2e9"
  }
}