Party Controller

End Party Activity

Path: /api/party/end-activity

Method: POST

Example Http Request

POST /api/party/end-activity HTTP/1.1
Content-Type: application/json
Content-Length: 159
Host: localhost:8080

{"activityId":"5551dea7-c238-4622-8493-55a1fefb19b7","fromPlayerId":null,"partyActivityCode":null,"message":null,"sessionId":null,"timestamp":null,"data":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":"02/04/2026 02:01:13.913","partyId":"babea321-835a-4cdc-9184-75fd17bc66c0","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/end-activity' -i -X POST \
    -H 'Content-Type: application/json' \
    -d '{"activityId":"5551dea7-c238-4622-8493-55a1fefb19b7","fromPlayerId":null,"partyActivityCode":null,"message":null,"sessionId":null,"timestamp":null,"data":null}'

Party Controller Footer