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

Path Parameters

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

Request Body Requirements

metadata
object
required

Known Errors

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