Party Controller

Send Party Data Message

Path: /api/party/data-message

Method: POST

Example Http Request

POST /api/party/data-message HTTP/1.1
Content-Type: application/json
Content-Length: 254
Host: localhost:8080

{"notificationType":null,"fromPlayerId":null,"toPlayerId":null,"partyInfo":null,"fromPlayerPeerId":null,"textMessage":"Text Message sent with 'Party data message' data message.","dataMessage":"Party data message.","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: 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/data-message' -i -X POST \
    -H 'Content-Type: application/json' \
    -d '{"notificationType":null,"fromPlayerId":null,"toPlayerId":null,"partyInfo":null,"fromPlayerPeerId":null,"textMessage":"Text Message sent with 'Party data message' data message.","dataMessage":"Party data message.","sessionId":null,"rejectedPartyId":null}'

Party Controller Footer