Skip to main content
PATCH
/
api
/
module48
/
pnl
/
{entry_id}
Update Pnl Endpoint
curl --request PATCH \
  --url https://api.example.com/api/module48/pnl/{entry_id} \
  --header 'Content-Type: application/json' \
  --data '
{
  "amount": 123,
  "category": "<string>",
  "month": "<string>"
}
'
{
  "amount": 123,
  "category": "<string>",
  "created_at": "<string>",
  "id": 123,
  "month": "<string>",
  "updated_at": "<string>"
}

Path Parameters

entry_id
integer
required

Body

application/json
amount
number | null
category
string | null
month
string | null

Response

Successful Response

amount
number
required
category
string
required
created_at
string
required
id
integer
required
month
string
required
updated_at
string
required