For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
SignalWire Basic Authentication using Project ID and API Token.
The client sends HTTP requests with the Authorization header containing
the word Basic followed by a space and a base64-encoded string of project_id:token.
The project ID will be used as the username and the API token as the password.
Example:
```
Authorization: Basic base64(project_id:token)
```
Path parameters
idstringRequiredformat: "uuid"
Unique ID of the short code.
Request
This endpoint expects an object.
namestringRequired<=255 characters
The name given to the short code.
message_handlerenumRequired
The message handler type for incoming messages.
Allowed values:
message_request_urlstringOptional
The URL to send message requests to when using laml_webhooks handler.
message_request_methodenumOptionalDefaults to POST
The HTTP method to use for message requests. Defaults to POST.
Allowed values:
message_fallback_urlstringOptional
The fallback URL for message requests.
message_fallback_methodenumOptionalDefaults to POST
The HTTP method to use for fallback requests. Defaults to POST.
SignalWire Basic Authentication using Project ID and API Token.
The client sends HTTP requests with the Authorization header containing
the word Basic followed by a space and a base64-encoded string of project_id:token.
The project ID will be used as the username and the API token as the password.