Customer Management API (v2.0.0)

Lili Server API Swagger documentation

Download OpenAPI description
Overview
Languages
Servers
Lili Server

https://sandbox.lili.co/

Download Bank Letter

Request

Gets a PDF containing a bank letter for a customer

Security
accessKey
Path
customerIdstringrequired

The customer ID, as provided in the create lead response

curl -i -X GET \
  'https://sandbox.lili.co/lili/api/v1/{customerId}/bankLetter' \
  -H 'Authorization: YOUR_API_KEY_HERE'

Register a payment transaction

Request

Creates a payment notification in the Lili system

Security
accessKey
Bodyapplication/json
customerIdstring
amountnumber
effectiveDatestring(date-time)
payeeNamestring
receiverAccountNumberstring
traceNumberstring
originatorRoutingNumberstring
originatorAccountNumberstring
curl -i -X PUT \
  https://sandbox.lili.co/lili/api/v1/payments \
  -H 'Authorization: YOUR_API_KEY_HERE' \
  -H 'Content-Type: application/json' \
  -d '{
    "customerId": "string",
    "amount": 0,
    "effectiveDate": "2019-08-24T14:15:22Z",
    "payeeName": "string",
    "receiverAccountNumber": "string",
    "traceNumber": "string",
    "originatorRoutingNumber": "string",
    "originatorAccountNumber": "string"
  }'