team_id
. Once a team is deleted, the system will mark it as deleted by setting the is_deleted
field to true
. Deleting a team removes it from the active list, and it can no longer be used in team-related operations.is_deleted
Field: Once successfully deleted, the is_deleted
field will be marked as true
, indicating that the team is no longer active.curl --location -g --request DELETE 'https:///v2/api/team/256' \
--header 'Ocp-Apim-Subscription-Key: ' \
--header 'Authorization: Bearer '
{
"success": true,
"message": "Team deleted successfully",
"data": {
"id": 256,
"created_by": "user@example.com",
"created_on": "2025-03-06T22:22:07.282279Z",
"modified_by": "",
"modified_on": "2025-03-06T22:22:07.282303Z",
"team_name": "user test",
"is_deleted": true,
"org": 1
}
}