Skip to main content
DELETE
/
v2
/
integrations
/
categories
/
{id}
curl --location --request DELETE 'https://integrations.projectcor.com/v2/integrations/categories/external-category-id-1' \
--header 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
--header 'Content-Type: application/json' \
--data '{
  "metadata": {
    "source": "GLOBANT"
  }
}'
{
  "message": "Entity deleted successfully"
}

Documentation Index

Fetch the complete documentation index at: https://developers.projectcor.com/llms.txt

Use this file to discover all available pages before exploring further.

Deletes a position category from your COR instance using its external ID. This removes both the category and the integration mapping.

Path Parameters

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

Request Body Requirements

metadata
object
required

Known Errors

  • CategoryNotFoundError — No category found with the specified external ID for this source
  • ValidationError — Missing required metadata.source field
  • DeletionError — Category cannot be deleted due to existing position associations
curl --location --request DELETE 'https://integrations.projectcor.com/v2/integrations/categories/external-category-id-1' \
--header 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
--header 'Content-Type: application/json' \
--data '{
  "metadata": {
    "source": "GLOBANT"
  }
}'
{
  "message": "Entity deleted successfully"
}