Party Controller
Update Peer ID
Path: /api/party/update-peerid
Method: POST
Example Http Request
POST /api/party/update-peerid HTTP/1.1
Content-Type: application/json
Content-Length: 52
Host: localhost:8080
{"sessionId":null,"peerId":"UpdatedGuestPeerID5678"}
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: 330
{"timestamp":"03/12/2025 12:36:57.906","partyId":"eeb1dbe9-9354-406e-943f-ac97e6f1c60f","hostPlayerId":"null","partyName":"My Party","accessType":"PRIVATE","partyPeople":[],"partyStatus":"STARTED","hostPeerId":"UpdatedGuestPeerID5678","hostAudioStatus":null,"hostPartyCallStatus":"CONNECTED","partyActivities":[],"partyApps":null}
Example Curl Request
$ curl 'http://localhost:8080/api/party/update-peerid' -i -X POST \
-H 'Content-Type: application/json' \
-d '{"sessionId":null,"peerId":"UpdatedGuestPeerID5678"}'
Party Controller Footer