Delete Delegates

Deletes the specified delegates whom the logged-in user has delegated.

Resource Information

Scopeusers

Deprecated scope name:   delete_citizenaccess_citizens_delegates

App Type Citizen
Authorization Type Access token
URI /v4/citizenaccess/citizens/delegates/{ids}?lang={lang}
HTTP Method DELETE
Automation Version(s) 7.3.3.5.0

Request Information

Field or Parameter Type Required Values Description Automation Version
ids string Yes   One or multiple identifiers separated by a comma like id1,id2,id3. 7.3.3.5
lang String No   Indicates the language applied. 7.3.3.5

Example

Sample Request Head

                    DELETE https://apis.accela.com/v4/citizenaccess/citizens/delegates/8775

Response Information

Field Type Description Automation Version
result result{}   7.3.3.5
result.failedCount long The number of failed results. 7.3.3.5
result.failedIDs string The IDs of the entities on which the operation failed. 7.3.3.5
result.successCount long The number of successful results. 7.3.3.5
result.successIDs string The IDs of the entities on which the operation succeeded. 7.3.3.5
status integer The record status. 7.3.3.5

Example

Sample Response Body

{
  "status": 200,
  "result": {
    "successCount": 1,
    "failedCount": 0,
    "failedIDs": [],
    "successIDs": [
      "8775"
    ]
  }
}