Hi, First you need to find the descriptor ID of that field group by using the below command for descriptor in GET /descriptors response:if descriptor["resourceType"] == "FieldGroup" and descriptor["resourceId"] == "<your-field-group-id>":print(descriptor["id"]) // This is the ID you need to DELETE o...