Get External LAML Handler
GET/resources/external_laml_handlers/:id
Returns an External LAML Handler by ID
Request
Path Parameters
Unique ID of a External LAML Handler.
Responses
- 200
- 401
- 404
The request has succeeded.
- application/json
- Schema
- Example (from schema)
Schema
Universal Unique Identifier.
Name of the External LAML Handler.
Possible values: [calling
, messaging
]
Sets the handler to handle incomming calls
or messages
.
Primary request url of the External LAML Handler.
Possible values: [GET
, POST
]
The method type to use for the URL
Fallback request url of the External LAML Handler.
Possible values: [GET
, POST
]
The method type to use for the URL
Status callback url of the External LAML Handler.
Possible values: [GET
, POST
]
The method type to use for the URL
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "My External LAML Handler",
"used_for": "calling",
"primary_request_url": "https://primary.com",
"primary_request_method": "GET",
"fallback_request_url": "https://fallback.com",
"fallback_request_method": "GET",
"status_callback_url": "https://callback.com",
"status_callback_method": "GET"
}
Access is unauthorized.
- application/json
- Schema
Schema
string
Possible values: [Unauthorized
]
The server cannot find the requested resource.
- application/json
- Schema
Schema
string
Possible values: [Not Found
]