Update the order of a user's studio tickers
Required scope: studio.write
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
ids
{ "ids": [ "c3d4e5f6-a7b8-9012-cdef-345678901234", "d4e5f6a7-b8c9-0123-def4-567890123456" ] }
204 No Content
{ "error": { "statusCode": 401, "status": 401, "code": 401, "message": "Invalid token: access token is invalid", "name": "invalid_token" } }