Party Controller

Accept Join Request

Path: /api/party/join-request/accept

Method: POST

Example Http Request

POST /api/party/join-request/accept HTTP/1.1
Content-Type: application/json
Content-Length: 228
Host: localhost:8080

{"notificationType":null,"fromPlayerId":"test-player-91085868-4cf9-428c-86c6-cf1c85396472","toPlayerId":null,"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: 231

{"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 accept join request."}]}

Example Curl Request

$ curl 'http://localhost:8080/api/party/join-request/accept' -i -X POST \
    -H 'Content-Type: application/json' \
    -d '{"notificationType":null,"fromPlayerId":"test-player-91085868-4cf9-428c-86c6-cf1c85396472","toPlayerId":null,"partyInfo":null,"fromPlayerPeerId":null,"textMessage":null,"dataMessage":null,"sessionId":null,"rejectedPartyId":null}'

Party Controller Footer