v1

latestOpenAPI 3.0.12026-07-265331168.0 KB
Proxy User

Delete Proxy User Record

Allows a user to delete an existing proxy user associated with their account. Proxy users that are set as account default can not be deleted, and already deleted proxy users can not be deleted again.

delete/public/user/proxy_user/delete/{proxy_user_id}

Path parameters

proxy_user_idstring required

ID of the proxy user record to delete.

Response

Proxy User Successfully Deleted

deletedstring[]

List of Proxy User IDs that were successfully deleted.

messagestring

Success message indicating the Proxy User was deleted.

proxy_user_acl_deletedstring[]

List of ProxyUserAcl IDs that were deleted during the proxy user deletion.

Example response

{
  "deleted": [
    "stevejobs"
  ],
  "message": "Proxy User deletion successful.",
  "proxy_user_acl_deleted": [
    "123e4567-e89b-12d3-a456-426614174000"
  ]
}