Delete

View as Markdown

Use this endpoint for the cXML Applications method to remove a cXML Application from your Project. Use the unique ID that was returned from your previous request to identify the specific instance.

Path parameters

AccountSidstringRequiredformat: "uuid"
The unique identifier for the account this script is associated with.
SidstringRequiredformat: "uuid"
The unique identifier of the cXML script.

Example

DELETE
/api/laml/2010-04-01/Accounts/:AccountSid/LamlBins/:Sid
1import requests
2
3url = "https://your_space.signalwire.com/api/laml/2010-04-01/Accounts/AccountSid/LamlBins/Sid"
4
5headers = {"Authorization": "Basic <project_id>:<api_token>"}
6
7response = requests.delete(url, headers=headers)
8
9print(response.json())