SetConnectorInfo
The SetConnectorInfo action sets a specific field value on a connector's configuration.
SetConnectorInfo(
integrationIdn: str,
connectorIdn: str,
field: str,
value: str
)
Where:
- integrationIdn: The integration identifier (e.g.,
"newo_voice","twilio_messenger"). - connectorIdn: The connector identifier (e.g.,
"newo_voice_connector","sms_connector"). - field: The name of the field to set on the connector.
- value: The value to assign to the field.
Example
{{SetConnectorInfo(
integrationIdn="newo_voice",
connectorIdn="newo_voice_connector",
field="agent_phone_number",
value="+16507000000"
)}}The above code snippet sets the "agent_phone_number" field on the Newo Voice connector.
Updated 4 days ago
