Delete company budget
curl --request DELETE \
--url https://paradigm.lighton.ai/api/v3/billing/budget \
--header 'Authorization: Bearer <token>'import requests
url = "https://paradigm.lighton.ai/api/v3/billing/budget"
headers = {"Authorization": "Bearer <token>"}
response = requests.delete(url, headers=headers)
print(response.text)const options = {method: 'DELETE', headers: {Authorization: 'Bearer <token>'}};
fetch('https://paradigm.lighton.ai/api/v3/billing/budget', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"detail": "System is under maintenance.",
"error": "service_maintenance",
"mode": "full_shutdown",
"reason": "<string>",
"started_at": "2023-11-07T05:31:56Z",
"endpoint_category_names": [
"<string>"
]
}Budget
Delete company budget
Delete the company’s budget and all associated alerts. Requires CompanyAdmin role.
DELETE
/
api
/
v3
/
billing
/
budget
Delete company budget
curl --request DELETE \
--url https://paradigm.lighton.ai/api/v3/billing/budget \
--header 'Authorization: Bearer <token>'import requests
url = "https://paradigm.lighton.ai/api/v3/billing/budget"
headers = {"Authorization": "Bearer <token>"}
response = requests.delete(url, headers=headers)
print(response.text)const options = {method: 'DELETE', headers: {Authorization: 'Bearer <token>'}};
fetch('https://paradigm.lighton.ai/api/v3/billing/budget', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"detail": "System is under maintenance.",
"error": "service_maintenance",
"mode": "full_shutdown",
"reason": "<string>",
"started_at": "2023-11-07T05:31:56Z",
"endpoint_category_names": [
"<string>"
]
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Response
No response body