Skip to main content
POST
/
purchases
/
{orderId}
/
edit-twitch-followers
Edit Twitch Followers
curl --request POST \
  --url https://api.streamskill.pro/v1/purchases/{orderId}/edit-twitch-followers \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "channel": "new_channel",
  "interval": 45,
  "floating_interval": true
}
'
{
  "status": "ok"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

Accept-Language
enum<string>
default:en

The language of the response

Available options:
en,
ru

Path Parameters

orderId
integer
required

The ID of the order

Body

application/json

All parameters are optional. Only pass the Twitch Followers settings you want to change. The public API intentionally does not support count for this endpoint.

channel
string

Twitch channel slug without the https://www.twitch.tv/ prefix. Channel changes are available within the order limit. Value must be non-empty after trim.

Example:

"new_channel"

interval
integer

Interval between followers in seconds.

Required range: 1 <= x <= 86400
Example:

45

floating_interval
boolean

Enable a floating interval of +/-25% from interval.

Example:

true

Response

Action Success

status
string

The status of the action

Example:

"ok"