Skip to main content
POST
/
projects
/
{project_id}
/
project_estimate
Add Project Estimate
curl --request POST \
  --url https://api.projectcor.com/v1/projects/{project_id}/project_estimate \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "title": "<string>",
  "cost": "<string>",
  "datetime": "2023-12-25",
  "currency_id": 123,
  "fee_id": 123
}
'
{
  "id": 123,
  "title": "<string>",
  "cost": "<string>",
  "datetime": "2023-12-25",
  "currency_id": 123,
  "fee_id": 123
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

project_id
integer
required

Body

application/json
title
string
required

Title of estimate

cost
string
required

Cost of the estimate

datetime
string<date>
required

Date of the estimate

currency_id
integer

Currency of the project-estimate

fee_id
integer

Related Fee

Response

200 - application/json

Project estimate created successfully

id
integer
title
string
cost
string
datetime
string<date>
currency_id
integer
fee_id
integer