Update LAML Application
PUT/resources/laml_applications/:id
Updates a LAML Application by ID.
Request
Path Parameters
id uuidrequired
The ID of the LAML Application
- application/json
Body
required
namestring
Example:
My Laml Application
call_request_urluri
Example:
https://example.com/call_request_url
call_request_methodstring
Possible values: [GET
, POST
]
Example:
POST
call_fallback_urluri
Example:
https://example.com/call_fallback_url
call_fallback_methodstring
Possible values: [GET
, POST
]
Example:
POST
call_status_urluri
Example:
https://example.com/call_status_url
call_status_methodstring
Possible values: [GET
, POST
]
Example:
POST
message_request_urluri
Example:
https://example.com/message_request_url
message_request_methodstring
Possible values: [GET
, POST
]
Example:
POST
message_fallback_urluri
Example:
https://example.com/message_url
message_fallback_methodstring
Possible values: [GET
, POST
]
Example:
POST
message_status_urluri
Example:
https://example.com/message_status_url
message_status_methodstring
Possible values: [GET
, POST
]
Example:
POST
Responses
- 200
- 422
A LAML Application
- application/json
- Schema
- Example (from schema)
Schema
iduuid
Example:
993ed018-9e79-4e50-b97b-984bd5534095
project_iduuid
Example:
1313fe58-5e14-4c11-bbe7-6fdfa11fe780
display_namestring
Example:
Reception
typestring
Example:
laml_application
created_atdate-time
Example:
2024-01-02T00:00:00Z
updated_atdate-time
Example:
2024-01-02T00:00:00Z
laml_application
object
iduuid
A unique identifier for the LAML Application
account_siduuid
Example:
1313fe58-5e14-4c11-bbe7-6fdfa11fe780
voice_urluri
Example:
https://example.com/call_request_url
voice_methodstring
Possible values: [GET
, POST
]
Example:
POST
voice_fallback_urluri
Example:
https://example.com/call_fallback_url
voice_fallback_methodstring
Possible values: [GET
, POST
]
Example:
POST
status_callbackuri
Example:
https://example.com/call_status_url
status_callback_methodstring
Possible values: [GET
, POST
]
Example:
POST
voice_caller_id_lookup
Example:
null
sms_urluri
Example:
https://example.com/message_request_url
sms_methodstring
Possible values: [GET
, POST
]
Example:
POST
sms_fallback_urluri
Example:
https://example.com/message_url
sms_fallback_methodstring
Possible values: [GET
, POST
]
Example:
POST
sms_status_callbackuri
Example:
https://example.com/message_status_url
sms_status_callback_methodstring
Possible values: [GET
, POST
]
Example:
POST
message_status_callbackuri
Example:
https://example.com/message_status_url
api_versionstring
Example:
2010-04-01
uristring
Example:
https://example.com
request_urluri
Example:
https://example.signalwire.com/relay-bins/2537c89e-2606-48c2-b3c2-bb601d863d1e
display_namestring
Example:
My Laml Application
{
"id": "993ed018-9e79-4e50-b97b-984bd5534095",
"project_id": "1313fe58-5e14-4c11-bbe7-6fdfa11fe780",
"display_name": "Reception",
"type": "laml_application",
"created_at": "2024-01-02T00:00:00Z",
"updated_at": "2024-01-02T00:00:00Z",
"laml_application": {
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"account_sid": "1313fe58-5e14-4c11-bbe7-6fdfa11fe780",
"voice_url": "https://example.com/call_request_url",
"voice_method": "POST",
"voice_fallback_url": "https://example.com/call_fallback_url",
"voice_fallback_method": "POST",
"status_callback": "https://example.com/call_status_url",
"status_callback_method": "POST",
"voice_caller_id_lookup": null,
"sms_url": "https://example.com/message_request_url",
"sms_method": "POST",
"sms_fallback_url": "https://example.com/message_url",
"sms_fallback_method": "POST",
"sms_status_callback": "https://example.com/message_status_url",
"sms_status_callback_method": "POST",
"message_status_callback": "https://example.com/message_status_url",
"api_version": "2010-04-01",
"uri": "https://example.com",
"request_url": "https://example.signalwire.com/relay-bins/2537c89e-2606-48c2-b3c2-bb601d863d1e",
"display_name": "My Laml Application"
}
}
Unprocessable Entity
- application/json
- Schema
- Example (from schema)
Schema
typestringrequired
codestringrequired
messagestringrequired
attributestring
urlurirequired
{
"type": "validation_error",
"code": "invalid_parameter",
"message": "Name must be present",
"attribute": "name",
"url": "https://developer.signalwire.com/rest/signalwire-rest/overview/error-codes#invalid_parameter"
}