DELETE
/
admin
/
users
/
{id}
Remove accountant user
curl --request DELETE \
  --url https://api.steuerboard.com/v1/admin/users/{id} \
  --header 'Authorization: Bearer <token>'
{
  "object": "file",
  "deleted": true,
  "id": "cmf41ajzv003706un4i99q19z"
}
This endpoint only works with the Accountant API key. More information here

Authorizations

Authorization
string
header
required

Bearer token authentication

Path Parameters

id
string<cuid>
required

The ID of the item

Example:

"cmf41ajzv003706un4i99q19z"

Response

Accountant user removed

object
string
required

The type of the deleted object

Example:

"file"

deleted
boolean
required

Whether the object was deleted

Example:

true

id
string<cuid>
required

The ID of the deleted object

Example:

"cmf41ajzv003706un4i99q19z"