Skip to main content
DELETE
/
api
/
v1
/
admin_assistant_roles
/
{id}
Delete an admin assistant role
curl --request DELETE \
  --url https://api.scholarlysoftware.com/api/v1/admin_assistant_roles/{id} \
  --header 'Authorization: Bearer <token>'
import requests

url = "https://api.scholarlysoftware.com/api/v1/admin_assistant_roles/{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.scholarlysoftware.com/api/v1/admin_assistant_roles/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
{
  "errors": [
    {
      "status": "<string>",
      "title": "<string>",
      "detail": "<string>"
    }
  ]
}
{
"errors": [
{
"status": "<string>",
"title": "<string>",
"detail": "<string>"
}
]
}
{
"errors": [
{
"status": "<string>",
"title": "<string>",
"detail": "<string>"
}
]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

Authorization
string
required

Bearer token

Path Parameters

id
string
required

Response

admin assistant role deleted