Skip to main content
POST
/
v1
/
expenses
/
{expenseId}
/
cancel
Cancel expense
curl --request POST \
  --url https://api.light.inc/v1/expenses/{expenseId}/cancel \
  --header 'Authorization: <api-key>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "receiptDocumentKey": "<string>",
  "originalCurrency": "USD",
  "billingCurrency": "USD",
  "status": "CREATED",
  "userId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "companyId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "performedDate": "2023-12-25",
  "lineItems": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "expenseId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "originalAmount": 123,
      "billingAmount": 123,
      "accountId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "costCenterId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "description": "<string>",
      "reimbursementCategoryId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z"
    }
  ],
  "createdAt": "2023-11-07T05:31:56Z",
  "updatedAt": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <api_key>, where <api_key> is your api key.

Path Parameters

expenseId
string<uuid>
required

Response

default - application/json;charset=UTF-8

default response

id
string<uuid>
receiptDocumentKey
string
originalCurrency
string
Example:

"USD"

billingCurrency
string
Example:

"USD"

status
enum<string>
Available options:
CREATED,
IN_DRAFT,
SUBMITTED_FOR_REVIEW,
CANCELLED
userId
string<uuid>
companyId
string<uuid>
performedDate
string<date>
lineItems
object[]
createdAt
string<date-time>
updatedAt
string<date-time>
I