Delete Group

Delete a group from your account.

Warning

DANGER: Deleting a group will permanently remove the group and may affect associated workflows, databases, and user access. Ensure the group is no longer needed before deletion.

POST Parameters

ParameterRequiredValueDescription
api_key{key}An API key that has access to the resource you want to query for
group_id{integer}The ID of a specific group to delete
Information Circle
Note

The API key used must be from a higher-level. It cannot be from the same group to be deleted.

Sample Request

POST https://api-app.xtracta.com/v1/group/delete HTTP/1.1
api_key=123&group_id=12345

Response Information

ElementDescription
<status>A status code in response to the operation
<message>Additional information about the operation – human readable

Sample Response

<?xml version="1.0" encoding="UTF-8"?>
<group_response>
    <status>200</status>
    <message>The request has been successfully processed</message>
</group_response>

Schema Definition

<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">

  <xs:simpleType name="ConfidenceType">
    <xs:union>
      <xs:simpleType>
        <xs:restriction base="xs:integer">
          <xs:minInclusive value="0"/>
          <xs:maxInclusive value="100"/>
        </xs:restriction>
      </xs:simpleType>
      <xs:simpleType>
        <xs:restriction base="xs:string">
          <xs:enumeration value=""/>
        </xs:restriction>
      </xs:simpleType>
    </xs:union>
  </xs:simpleType>

  <xs:complexType name="GroupresponseType">
    <xs:sequence>
      <xs:element name="status" type="xs:positiveInteger"/>
      <xs:element name="message" type="xs:string"/>
    </xs:sequence>
  </xs:complexType>

  <xs:element name="group_response">
    <xs:complexType>
      <xs:sequence>
      <xs:element name="status" type="xs:positiveInteger"/>
      <xs:element name="message" type="xs:string"/>
      </xs:sequence>
    </xs:complexType>
  </xs:element>

</xs:schema>