Properties
| Name | Type | Description |
|---|---|---|
| transport | string | This is the transport type. |
| sipVerb | string | This is the SIP verb to use. Must be one of INFO, MESSAGE, or NOTIFY. |
| headers | object | These are the headers to include with the SIP request. |
| body | string | This is the body of the SIP request, if any. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/VapiSipTransportMessage",
"title": "VapiSipTransportMessage",
"type": "object",
"properties": {
"transport": {
"type": "string",
"description": "This is the transport type.",
"enum": [
"vapi.sip"
]
},
"sipVerb": {
"type": "string",
"description": "This is the SIP verb to use. Must be one of INFO, MESSAGE, or NOTIFY.",
"enum": [
"INFO",
"MESSAGE",
"NOTIFY"
]
},
"headers": {
"type": "object",
"description": "These are the headers to include with the SIP request."
},
"body": {
"type": "string",
"description": "This is the body of the SIP request, if any."
}
},
"required": [
"transport",
"sipVerb"
]
}