Skip to main content
DELETE
https://integrations.projectcor.com
/
v2
/
integrations
/
teams
/
{id}
curl --location --request DELETE 'https://integrations.projectcor.com/v2/integrations/teams/11213132312111' \
--header 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
--header 'Content-Type: application/json' \
--data '{
  "metadata": {
    "source": "GLOBANT"
  }
}'
{
  "message": "Entity deleted successfully"
}
Deletes a team from your COR instance using its external ID. This also removes the integration mapping for the team.

Path Parameters

id
string
required
External team ID that was used when creating the team

Request Body Requirements

metadata
object
required

Known Errors

  • ZC001 — Entity is not associated (team not found with the specified external ID for this source)
  • ValidationError — Missing required metadata.source field
curl --location --request DELETE 'https://integrations.projectcor.com/v2/integrations/teams/11213132312111' \
--header 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
--header 'Content-Type: application/json' \
--data '{
  "metadata": {
    "source": "GLOBANT"
  }
}'
{
  "message": "Entity deleted successfully"
}