Api Documentation

Match sponsor clicks

Sponsor Clicks allow you to track which users click on which sponsors for Matches. Clicks can only be registered with Authenticated API Keys.
Retrieves a collection of Match Sponsor Clicks.
Creates a new Match Sponsor Click. Only available to API keys with user authentication.
Json
XML
POST https://api.bundeling.com/V2/match_sponsor_clicks

Parameters

Body

NameDescriptionTypeNillableRequired
match_uuidThe unique identifier for the match.stringfalsetrue
sponsor_uuidThe unique identifier for the sponsor that was clicked.stringfalsetrue

Example request

Headers

Content-Type:application/json
Api-Key:RAegSX8yZfEbqSPM

Body

{
    "match_uuid": "eeb763c41c054dcc8f6d9362f24ee9b2",
    "sponsor_uuid": "d7743aaf53224e279853c7d0c1dbfb3a"
}

Example response

{
    "uuid": "eeb763c41c054dcc8f6d9362f24ee9b2",
    "match_uuid": "d7743aaf53224e279853c7d0c1dbfb3a",
    "sponsor_uuid": "d7743aaf53224e279853c7d0c1dbfb3a",
    "user_uuid": "d7743aaf53224e279853c7d0c1dbfb3a",
    "creationdate": "2024-01-20T00:00:00+0100",
    "lastupdate": "2024-01-20T00:00:00+0100"
}