Reorder Tickers

Update the order of a user's studio tickers

Info

Required scope: studio.write

Warning

This method requires authentication

Set a custom order for the authenticated user's tickers by providing an array of ticker IDs.

curl -X PATCH \
     -H "Authorization: Bearer [access token]" \
     -H "Content-Type: application/json" \
     -d '{"ids": ["c3d4e5f6-a7b8-9012-cdef-345678901234", "d4e5f6a7-b8c9-0123-def4-567890123456"]}' \
     https://api.restream.io/v2/user/studio/tickers/order

Request Body

FieldTypeDescription
idsarray of stringsOrdered list of ticker IDs (required)
{
  "ids": [
    "c3d4e5f6-a7b8-9012-cdef-345678901234",
    "d4e5f6a7-b8c9-0123-def4-567890123456"
  ]
}

Response

Success
Error (Unauthorized)
204 No Content