Skip to main content
POST
https://integrations.projectcor.com
/
v2
/
integrations
/
categories
curl --location 'https://integrations.projectcor.com/v2/integrations/categories' \
--header 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
--header 'Content-Type: application/json' \
--data '{
  "metadata": {
    "source": "GLOBANT"
  },
  "id": "external-category-id-1",
  "name": "Category name"
}'
{
  "statusCode": 200,
  "status": "success",
  "data": {
    "name": "Category name",
    "company_id": 2336,
    "created_at": "2025-11-19 18:33:26",
    "updated_at": "2025-11-19 18:33:26",
    "id": "external-category-id-1"
  }
}
Creates a new position category in your COR instance through the integrations service.

Request Body Requirements

metadata
object
required
id
string
required
External category ID from your source system
name
string
required
Category name

Known Errors

  • ValidationError — Missing required fields
  • DuplicateExternalIdError — A category with this external ID already exists for this source
curl --location 'https://integrations.projectcor.com/v2/integrations/categories' \
--header 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
--header 'Content-Type: application/json' \
--data '{
  "metadata": {
    "source": "GLOBANT"
  },
  "id": "external-category-id-1",
  "name": "Category name"
}'
{
  "statusCode": 200,
  "status": "success",
  "data": {
    "name": "Category name",
    "company_id": 2336,
    "created_at": "2025-11-19 18:33:26",
    "updated_at": "2025-11-19 18:33:26",
    "id": "external-category-id-1"
  }
}