POST
/
webrtc
/
offer
curl --request POST \
  --url https://api-west.millis.ai/webrtc/offer \
  --header 'Content-Type: application/json' \
  --header 'authorization: <authorization>' \
  --data '{
  "offer": {
    "sdp": "<string>",
    "type": "<string>"
  },
  "agent_id": "<string>"
}'
{
  "answer": {
    "sdp": "<string>",
    "type": "<string>"
  }
}

Headers

authorization
string
required

Private Key

Body

application/json
offer
object
required
agent_id
string
required

Response

200
application/json
Successful Response
answer
object
required