Create Service Account
curl --request POST \
--url https://api.veridical.dev/api/v1/admin/service-accounts \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"permissions": [
"<string>"
],
"workspace_id": "<string>",
"privacy_processor": "<string>"
}
'import requests
url = "https://api.veridical.dev/api/v1/admin/service-accounts"
payload = {
"name": "<string>",
"permissions": ["<string>"],
"workspace_id": "<string>",
"privacy_processor": "<string>"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
name: '<string>',
permissions: ['<string>'],
workspace_id: '<string>',
privacy_processor: '<string>'
})
};
fetch('https://api.veridical.dev/api/v1/admin/service-accounts', 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
Create Service Account
POST
/
api
/
v1
/
admin
/
service-accounts
Create Service Account
curl --request POST \
--url https://api.veridical.dev/api/v1/admin/service-accounts \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"permissions": [
"<string>"
],
"workspace_id": "<string>",
"privacy_processor": "<string>"
}
'import requests
url = "https://api.veridical.dev/api/v1/admin/service-accounts"
payload = {
"name": "<string>",
"permissions": ["<string>"],
"workspace_id": "<string>",
"privacy_processor": "<string>"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
name: '<string>',
permissions: ['<string>'],
workspace_id: '<string>',
privacy_processor: '<string>'
})
};
fetch('https://api.veridical.dev/api/v1/admin/service-accounts', 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
Body
application/json
Required string length:
1 - 100Required array length:
1 - 100 elementsRequired string length:
1 - 200Pattern:
^(identity_provider|cockpit|artifact_store|build_cache|integrations|model_provider|support)$Response
Successful Response
The response is of type Response Create Service Account Api V1 Admin Service Accounts Post · object.
Last modified on July 28, 2026
⌘I

