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

Headers

Authorization
string
required

API key. Value must be formatted like so: lucca application={api_key}.

Body

application/json · object[]

The body is of type object[].

Response

200
application/json
OK

The response is of type object.