Referral Campaigns

Endpoints that allow you to work with your referral campaigns.

Get Campaigns

GET https://api.sparkloop.app/v2/campaigns

Returns all of your campaigns. At the moment you're only allowed to have one campaign per Sparkloop account.

{ 
  "campaigns": [
    <Campaign Object>,
    <Campaign Object>,
    <Campaign Object>
  ]
}

Get Campaign

GET https://api.sparkloop.app/v2/campaigns/:uuid

Returns a campaign.

Path Parameters

NameTypeDescription

uuid*

string

Campaign's UUID, for example MF9a78983d1c

Headers

NameTypeDescription

X-Api-Key*

string

API key

{ 
  "campaign": <Campaign Object>
}

Update Campaign

PUT https://api.sparkloop.app/v2/campaigns/:uuid

Updates the campaign

Path Parameters

NameTypeDescription

uuid*

string

Campaign's UUID, for example MF9a78983d1c

Headers

NameTypeDescription

X-Api-Key*

string

API key

Request Body

NameTypeDescription

name

string

Campaign's name

{
  "campaign": <Campaign Object>
}

Last updated