Disable Service Account
curl --request DELETE \
--url https://api.veridical.dev/api/v1/admin/service-accounts/{service_account_id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.veridical.dev/api/v1/admin/service-accounts/{service_account_id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.delete(url, headers=headers)
print(response.text)const options = {method: 'DELETE', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.veridical.dev/api/v1/admin/service-accounts/{service_account_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"ctx": {},
"input": "<unknown>"
}
]
}control
Disable Service Account
DELETE
/
api
/
v1
/
admin
/
service-accounts
/
{service_account_id}
Disable Service Account
curl --request DELETE \
--url https://api.veridical.dev/api/v1/admin/service-accounts/{service_account_id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.veridical.dev/api/v1/admin/service-accounts/{service_account_id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.delete(url, headers=headers)
print(response.text)const options = {method: 'DELETE', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.veridical.dev/api/v1/admin/service-accounts/{service_account_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"ctx": {},
"input": "<unknown>"
}
]
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Headers
Path Parameters
Query Parameters
Minimum string length:
1Response
Successful Response
The response is of type Response Disable Service Account Api V1 Admin Service Accounts Service Account Id Delete · object.
Last modified on July 28, 2026
⌘I

