Skip to main content
POST
/
api
/
v4.0
/
integrations
/
events
Send Events
curl --request POST \
  --url https://api.gameball.co/api/v4.0/integrations/events \
  --header 'Content-Type: application/json' \
  --header 'apikey: <api-key>' \
  --data '
{
  "customerId": "<string>",
  "events": {}
}
'
{
  "success": true,
  "message": "<string>"
}
Send events to capture customer actions. Each event has a name (for example, place_order) and optional metadata.
Security: Requires apikey header.

Authorizations

apikey
string
header
required

Body

application/json

Event payload containing the customerId and one or more events with metadata.

customerId
string
required

Unique identifier for the customer

events
object
required

A mapping of event names to metadata objects

Response

200 - application/json

Events accepted

success
boolean
message
string