Skip to main content
GET
/
projects
/
{project_id}
/
ratecard
Get project ratecard
curl --request GET \
  --url https://api.projectcor.com/v1/projects/{project_id}/ratecard \
  --header 'Authorization: Bearer <token>'
{
  "id": 123,
  "name": "<string>",
  "original_name": "<string>",
  "percent": 123,
  "company_id": 123,
  "system": true,
  "currency_id": 123,
  "linked_to_base_price": true,
  "external_key": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z",
  "deleted_at": "2023-11-07T05:31:56Z"
}

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

Response

200 - application/json

Ratecard assigned to the project (or null)

A ratecard defines pricing configurations for the company

id
integer

Unique identifier for the ratecard

name
string

Display name of the ratecard

original_name
string

Original/system name of the ratecard

percent
number

Percentage applied by this ratecard

company_id
integer

Company ID that owns this ratecard

system
boolean

Whether this is a system-generated ratecard

currency_id
integer | null

Associated currency ID. Defaults to the system's base currency if not specified.

linked_to_base_price
boolean

Whether the ratecard is calculated based on base price

external_key
string | null

External key for integration with external systems

created_at
string<date-time>

Creation timestamp

updated_at
string<date-time>

Last update timestamp

deleted_at
string<date-time> | null

Deletion timestamp (soft delete)