Party Controller

Send Party Scope Text Message

Path: /api/party/text-message

Method: POST

Example Http Request

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

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

Party Controller Footer