POST
/
api
/
v3
/
expenseClaims
/
creation
curl --request POST \
  --url https://example.ilucca.net/api/v3/expenseClaims/creation \
  --header 'Content-Type: application/json' \
  --data '[
  {
    "title": "<string>",
    "expenseTempItems": [
      {
        "id": 123
      }
    ]
  }
]'
{
  "data": [
    {
      "createdExpenseClaim": {
        "id": 123,
        "nextApprover": {
          "firstName": "<string>",
          "lastName": "<string>"
        }
      }
    }
  ]
}

Body

application/json · object[]
title
string
required

Human readable name for this ExpenseClaim (eg: "May 2022").

expenseTempItems
object[]
required

List of all temporary expenses identifiers that should be included in this expense claim.

Response

200
application/json
OK
data
object[]