Skip to main content
POST
/
user
/
dj
/
go-live
Toggle DJ online status
curl --request POST \
  --url https://jamquest-dev.techboo.net/api/v1/user/dj/go-live \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "online": true
}'
{
  "status": "ok",
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

Access token obtained during login or registration. Use this token in the Authorization header for authenticated requests.

Body

application/json
online
boolean
required

Set to true to go online, false to go offline.

Response

Status updated successfully

status
string
Example:

"ok"

message
string