DELETE api/UserAccess?userName={userName}&objectID={objectID}&objectType={objectType}
Deletes a user access item
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| userName |
The username |
string |
Required |
| objectID |
Integer ID of the object to delete |
integer |
Required |
| objectType |
Type for the object to delete |
OwnerType |
Required |
Body Parameters
None.
Response Information
Resource Description
A boolean indicating success
GetBooleanResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Bool |
The boolean result |
boolean |
None. |
| Messages |
Array of messages |
Collection of Message |
None. |
| ServerInformation |
Relevant information regarding the Server |
ServerInformation |
None. |
| VersionInformation |
Relevant information regarding the API's version |
VersionInformation |
None. |
Response Formats
application/json, text/json, text/html
Sample:
{
"Messages": [
{
"Severity": 0,
"MessageCode": 1,
"CodeDesc": 2,
"MessageText": "sample string 3",
"RecordNumber": 4
},
{
"Severity": 0,
"MessageCode": 1,
"CodeDesc": 2,
"MessageText": "sample string 3",
"RecordNumber": 4
}
],
"ServerInformation": {
"CurrentTimeUTC": "2025-11-09T21:42:38.2104776+10:00",
"BuildDateUTC": "2025-11-09T21:42:38.2104776+10:00"
},
"VersionInformation": {
"Major": 1,
"Minor": 8,
"Hotfix": 0,
"Beta": true,
"Version": "1.8.0.BETA"
},
"Bool": true
}