Skip to main content
DELETE
https://integrations.projectcor.com
/
v2
/
integrations
/
working-time
/
{id}
curl --location --request DELETE 'https://integrations.projectcor.com/v2/integrations/working-time/SAP-WT-12345' \
--header 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
--header 'Content-Type: application/json' \
--data '{
  "metadata": {
    "source": "SAP"
  }
}'
{
  "message": "Working time record deleted successfully",
  "external_id": "SAP-WT-12345",
  "cor_id": 50001
}
Deletes a working time record from your COR instance using its external ID.
Since working time records cannot be updated, use this endpoint followed by a create operation when you need to modify a record.

Path Parameters

id
string
required
External working time record ID that was used when creating the record

Request Body Requirements

metadata
object
required

Known Errors

  • WorkingTimeNotFoundError — No working time record found with the specified external ID
  • ValidationError — Missing required metadata.source field
curl --location --request DELETE 'https://integrations.projectcor.com/v2/integrations/working-time/SAP-WT-12345' \
--header 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
--header 'Content-Type: application/json' \
--data '{
  "metadata": {
    "source": "SAP"
  }
}'
{
  "message": "Working time record deleted successfully",
  "external_id": "SAP-WT-12345",
  "cor_id": 50001
}