Delete a User Group

post/accountmanager.deletegroup

Deletes a User Group. The general datasource /delete operation should NOT be used for the User Group object as this special command (/accountmanager.deletegroup) also performs a cleanup of related objects (objects that have this business role assigned).

Securitybasic or X-PriceFx-jwt
Request
Request Body schema: application/json
required
object

data must contain the typedId of the user group object you want to delete or all business key fields of that object type.'

typedId
required
string non-empty
Responses
200

OK

Response Schema: application/json
object
node
string non-empty
Array of objects non-empty unique
Array (non-empty)
version
number
typedId
string non-empty
uniqueName
string non-empty
label
string non-empty
additionalInfo1
any
additionalInfo2
any
additionalInfo3
any
additionalInfo4
any
createDate
string non-empty
createdBy
number
lastUpdateDate
string non-empty
lastUpdateBy
number
status
number
Request samples
application/json
{
  • "data": {
    • "typedId": "15667.UG"
    }
}
Response samples
application/json
{
  • "response": {
    • "node": "string",
    • "data": [
      • {
        • "version": 0,
        • "typedId": "string",
        • "uniqueName": "string",
        • "label": "string",
        • "additionalInfo1": null,
        • "additionalInfo2": null,
        • "additionalInfo3": null,
        • "additionalInfo4": null,
        • "createDate": "string",
        • "createdBy": 0,
        • "lastUpdateDate": "string",
        • "lastUpdateBy": 0
        }
      ],
    • "status": 0
    }
}