Upscribe

Get all Upscribes

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

Returns all Upscribes

{
  "upscribes": [
    <Upscribe Object>,
    <Upscribe Object>,
    <Upscribe Object>
  ]
}

Get an Upscribe

GET https://api.sparkloop.app/v2/upscribes/:identifier

Returns a single upscribe by UUID

Path Parameters

NameTypeDescription

identifier*

string

Upscribe's UUID

{
  "upscribe": <Upscribe Object>
}

Update an Upscribe

PUT https://api.sparkloop.app/v2/upscribes/:identifier

Updates an upscribe record

Path Parameters

NameTypeDescription

identifier*

string

Upscribe's UUID

Body parameters

NameTypeDescription

auto_pilot

boolean

Enable/disable Upscribe auto-pilot feature.

{
  "upscribe": <Upscribe Object>
}

Subscribe to recommendations

POST https://api.sparkloop.app/v2/upscribes/:identifier/subscribe

Path Parameters

NameTypeDescription

identifier*

string

Upscribe's UUID

Request Body

NameTypeDescription

subscriber*

string

The subscriber's UUID

recommendations*

string

A string of comma separated recommendations' ref_codes. ie: "a724e922a3,a338cbf66a,ed149464cb"

{
  "response": "ok"
}

Last updated