v1

latestOpenAPI 3.0.02026-08-068926279.2 KB
Other Income

Update other income

Updates an existing other income entry

put/other-income/{id}

Path parameters

idinteger required

Other Income ID

Request body

client_idinteger nullable
amountnumber
sourcestring
notestring
datestring date

Response

Successful response

idinteger
team_idinteger
client_idinteger nullable
amountnumber
sourcestring
notestring nullable
datestring date

Example response

{
  "id": 1,
  "team_id": 1,
  "client_id": 1,
  "amount": 1000,
  "source": "Consulting",
  "note": "Strategy session",
  "date": "2024-01-15",
  "taxes": [
    {
      "id": 1,
      "name": "Sales Tax",
      "rate": 8.25,
      "type": "global"
    }
  ]
}