Skip to main content
GET
/
clients
/
{client_id}
/
fees
Get Fees from a client
curl --request GET \
  --url https://api.projectcor.com/v1/clients/{client_id}/fees \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": 123,
    "name": "<string>",
    "estimate": 123,
    "work_order": "<string>",
    "description": "<string>",
    "frequency": 123,
    "status": "active",
    "estimated_time": 123,
    "start": "2023-12-25",
    "end": "2023-12-25",
    "currency_id": 123
  }
]

Authorizations

Authorization
string
header
required

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

Path Parameters

client_id
integer
required

Response

200 - application/json

List of fees

id
integer
name
string
estimate
number<float>
work_order
string
description
string
frequency
integer
status
enum<string>
Available options:
active,
inactive
estimated_time
integer
start
string<date>
end
string<date>
currency_id
integer