Properties
| Name | Type | Description |
|---|---|---|
| authPassword | string | This is not returned in the API. |
| authUsername | string | |
| sipRegisterPlan | object | This can be used to configure if SIP register is required by the SIP trunk. If not provided, no SIP registration will be attempted. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/SipTrunkOutboundAuthenticationPlan",
"title": "SipTrunkOutboundAuthenticationPlan",
"type": "object",
"properties": {
"authPassword": {
"type": "string",
"description": "This is not returned in the API."
},
"authUsername": {
"type": "string"
},
"sipRegisterPlan": {
"description": "This can be used to configure if SIP register is required by the SIP trunk. If not provided, no SIP registration will be attempted.",
"allOf": [
{
"$ref": "#/components/schemas/SipTrunkOutboundSipRegisterPlan"
}
]
}
}
}