Skip to main content
POST
/
bills
Create Bill
curl --request POST \
  --url 'http://{{baseurl}}/bills' \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "date": "2023-11-22",
  "value": "-150",
  "description": "Sample Bill",
  "extraNotes": "Recived Payment"
}
'

Authorizations

Authorization
string
header
required

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

Headers

Content-Type
string

Body

application/json

The body is of type object.

Response

200 - application/json

Successful response