Delete Group


    # Here is a curl example
    curl \
    -X POST "http://localhost:8888/api/UsersAndGroups/DeleteGroup" \
    -H "Authorization: {token}" \
    -H "Content-Type: application/json" \
    -d '{
        "group_id": 1,
    }'

This method allows you to delete a group.

To delete a group, you need to make a POST call to the following url: :
http://localhost:8888/api/UsersAndGroups/DeleteGroup



    Result example :
    [
        {
            "Success": "boolean",
            "Message": "string",
            "Data": object,
            "CustomAction": Dictionary<object, object> ,
            "CustomAttributes":Dictionary<object, object>
        }
    ]

From Body Parameters

Field Parameter Type Type Description
group_id body long Group Id
Authorization header string Add Authorization header token