Voice Controller

Voice Roomcast

Path: /api/voice/roomcast

Method: POST

Example Http Request

POST /api/voice/roomcast HTTP/1.1
Content-Type: application/json
Content-Length: 20
Host: localhost:8080

My Room Cast Message

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: 227

{"status":"FORBIDDEN","timestamp":"03-12-2025 12:36:58","message":"Party Service Exception","debugMessage":null,"subErrors":[{"object":"com.ja.movements.controller.VoiceController","message":"Unable to send roomcast message"}]}

Example Curl Request

$ curl 'http://localhost:8080/api/voice/roomcast' -i -X POST \
    -H 'Content-Type: application/json' \
    -d 'My Room Cast Message'

Voice Controller