Party Controller
Mute User
Path: /api/party/mute
Method: POST
Example Http Request
POST /api/party/mute HTTP/1.1
Content-Type: application/json
Content-Length: 228
Host: localhost:8080
{"notificationType":null,"fromPlayerId":null,"toPlayerId":"test-player-91085868-4cf9-428c-86c6-cf1c85396472","partyInfo":null,"fromPlayerPeerId":null,"textMessage":null,"dataMessage":null,"sessionId":null,"rejectedPartyId":null}
Example Http Response
HTTP/1.1 403 Forbidden
Vary: Origin
Vary: Access-Control-Request-Method
Vary: Access-Control-Request-Headers
Content-Type: application/json
Content-Length: 228
{"status":"FORBIDDEN","timestamp":"03-12-2025 12:36:58","message":"Party Service Exception","debugMessage":null,"subErrors":[{"object":"com.ja.movements.service.DistributedPartyService","message":"Unable to mute player user."}]}
Example Curl Request
$ curl 'http://localhost:8080/api/party/mute' -i -X POST \
-H 'Content-Type: application/json' \
-d '{"notificationType":null,"fromPlayerId":null,"toPlayerId":"test-player-91085868-4cf9-428c-86c6-cf1c85396472","partyInfo":null,"fromPlayerPeerId":null,"textMessage":null,"dataMessage":null,"sessionId":null,"rejectedPartyId":null}'
Party Controller Footer