PATCH
/
ext
/
v1
/
expenses
/
{expenseId}
Updates an expense
curl --request PATCH \
  --url https://api.light.inc/rest/ext/v1/expenses/{expenseId} \
  --header 'Content-Type: application/json;charset=UTF-8' \
  --data '{
  "originalCurrency": "USD",
  "performedDate": "2023-12-25"
}'
{
  "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"
}

Path Parameters

expenseId
string
required

Body

application/json;charset=UTF-8

Response

default - application/json;charset=UTF-8

default response

The response is of type object.