EaserixDocs
DevelopersAPI referenceSignNotary

Record an expense

One practice cost in integer cents.

View as Markdown
POST
/v1/notary/expenses
AuthorizationBearer <token>

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

application/json

application/json

curl -X POST "https://example.com/v1/notary/expenses" \  -H "Content-Type: application/json" \  -d '{    "amountCents": 0  }'
{  "expense": {    "id": "string",    "category": "string",    "amountCents": 0,    "note": "string",    "spentAt": "2019-08-24T14:15:22Z"  }}