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.
Creates a new project in your COR instance through the integrations service. The project is mapped to an external ID from your source system (Salesforce, Jira, etc.) for bidirectional synchronization.
Request Body Requirements
All requests require the metadata.source field to identify the integration source.
Integration source identifier. Must be one of: JIRA, SALESFORCE, ADVERTMIND, QUICKBOOKS, ZAPIER, OKTA, MICROSOFT_DYNAMICS, GITHUB, MICROSOFT_TEAMS, VBS, SAP, GLOBANT
External project ID from your source system. This ID will be used to reference the project in future update/delete operations.
External client ID. The client must have been previously created through the integrations API.
Project description or brief
Project start date in YYYY-MM-DD format
Project end date in YYYY-MM-DD format
External project manager user ID
Estimated hours for the project
Whether the project is billable
Project evaluation date in YYYY-MM-DD format
Estimated monetary value for the project
External contract ID. The contract must have been previously created through the integrations API.
Project deliverables description
Work order number or code
Income type for the project. Possible values: fee, one_time, hourly_rate, contract
Whether the project is archived
Known Errors
ValidationError — Missing required fields (metadata.source, id, or name)
ClientNotFoundError — The specified client_id does not exist in the integration mappings
DuplicateExternalIdError — A project with this external ID already exists for this source
InvalidSourceError — The metadata.source value is not a valid integration source
curl --location 'https://integrations.projectcor.com/v2/integrations/projects' \
--header 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
--header 'Content-Type: application/json' \
--data '{
"metadata": {
"source": "SALESFORCE"
},
"id": "SF-OPP-12345",
"name": "Website Redesign Project",
"client_id": "SF-ACC-67890",
"brief": "Complete website overhaul including new branding",
"start": "2025-01-15",
"end": "2025-03-31",
"pm_id": "SF-USER-111",
"estimated_time": 200,
"billable": true,
"status": "active",
"estimated": 15000,
"contract_id": "SF-CONTRACT-001",
"work_order": "WO-2025-001"
}'
{
"id" : 155693 ,
"name" : "Website Redesign Project" ,
"client_id" : 25855 ,
"brief" : "Complete website overhaul including new branding" ,
"start" : "2025-01-15 00:00:00" ,
"end" : "2025-03-31 00:00:00" ,
"pm_id" : 8546 ,
"estimated_time" : 200 ,
"billable" : true ,
"status" : "active" ,
"estimated" : 15000 ,
"contract_id" : 4521 ,
"work_order" : "WO-2025-001" ,
"company_id" : 1234 ,
"created_at" : "2025-01-10T14:30:00Z" ,
"updated_at" : "2025-01-10T14:30:00Z"
}