Get External SWML Handler
GET/resources/external_swml_handlers/:id
Returns an External SWML Handler by ID
Request
Path Parameters
id uuidrequired
Unique ID of a External SWML Handler.
Responses
- 200
- 401
- 404
The request has succeeded.
- application/json
- Schema
- Example (from schema)
Schema
id uuidrequired
Universal Unique Identifier.
name stringrequired
Name of the External SWML Handler.
used_for stringrequired
Possible values: [calling
]
Used for of the External SWML Handler.
primary_request_url stringrequired
Primary request url of the External SWML Handler.
primary_request_method UrlMethodType (string)required
Possible values: [GET
, POST
]
The method type to use for the URL
fallback_request_url stringrequired
Fallback request url of the External SWML Handler.
fallback_request_method UrlMethodType (string)required
Possible values: [GET
, POST
]
The method type to use for the URL
status_callback_url stringrequired
Status callback url of the External SWML Handler.
status_callback_method UrlMethodType (string)required
Possible values: [GET
, POST
]
The method type to use for the URL
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "My External SWML 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
]
Loading...