Party Controller

Unmute Myself

Path: /api/party/unmute

Method: POST

Example Http Request

POST /api/party/unmute HTTP/1.1
Content-Type: application/json
Content-Length: 228
Host: localhost:8080

{"notificationType":null,"fromPlayerId":null,"toPlayerId":"test-player-90939417-cfec-43a7-97a4-b04f8b2db9b5","partyInfo":null,"fromPlayerPeerId":null,"textMessage":null,"dataMessage":null,"sessionId":null,"rejectedPartyId":null}

Example Http Response

HTTP/1.1 200 OK
Vary: Origin
Vary: Access-Control-Request-Method
Vary: Access-Control-Request-Headers
Content-Type: application/json
Content-Length: 335

{"timestamp":"22/07/2026 12:06:28.935","partyId":"ba8955c2-46b6-452a-a1aa-f95a628da623","hostPlayerId":"null","partyName":"My Party","accessType":"PRIVATE","partyPeople":[],"partyStatus":"STARTED","hostPeerId":"UpdatedGuestPeerID5678","hostAudioStatus":"DEFAULT","hostPartyCallStatus":"CONNECTED","partyActivities":[],"partyApps":null}

Example Curl Request

$ curl 'http://localhost:8080/api/party/unmute' -i -X POST \
    -H 'Content-Type: application/json' \
    -d '{"notificationType":null,"fromPlayerId":null,"toPlayerId":"test-player-90939417-cfec-43a7-97a4-b04f8b2db9b5","partyInfo":null,"fromPlayerPeerId":null,"textMessage":null,"dataMessage":null,"sessionId":null,"rejectedPartyId":null}'

Party Controller Footer