---
title: "Asset payments"
description: "This article explains the fields contained in responses received from the lease asset payments API endpoint."
url: "https://developer.tesma.com/apis/tesma-platform-api-v1/docs/assetpayments"
image: "https://developer.tesma.com/_og/d/c_Ocean.takumi,title_Asset+payments,description_This+article+explains+the+fields+contained+in+responses+received+from+the+lease+asset+payments+API+endpoint.,props_eyJ0aGVtZSI6eyJtb2RlIjoibGlnaHQiLCJjb2xvcnMiOnsicHJpbWFyeSI6IiM0Mjg1ZjQifX19,p_Ii9hcGlzL3Rlc21hLXBsYXRmb3JtLWFwaS12MS9kb2NzL2Fzc2V0cGF5bWVudHMi,s_GHKKB2HNZefgHV1k.png"
---

# Asset payments

This article explains the fields contained in responses received from the lease asset payments API endpoint.

## [General information](#general-information)

The general asset response contains all properties and is therefore used to describe the meaning of the field values. An example of a single asset payment may look like this:

```json
"customerContext": {
  "customerName": "Testcompany GmbH",
  "leaseCompanyName": "CHG-MERIDIAN AG",
  "customerNumber": 903544,
  "leaseCompany": 1
},
"assetId": 41100005,
"leaseScheduleId": 2894568,
"paymentDate": "2022-08-01",
"periodBegin": "2022-08-01",
"periodEnd": "2022-08-31",
"currency": "EUR",
"amount": 48.25
```

The asset is uniquely identified by a combination of the leaseCompany, leaseScheduleId and assetId.

## [Asset payment properties](#asset-payment-properties)

| Property         | Description                           | Remarks                 |
| :--------------- | :------------------------------------ | :---------------------- |
| customerName     | Customer name                         |                         |
| customerNumber   | CHG customer number                   |                         |
| leaseCompanyName | CHG lessor company                    |                         |
| leaseCompany     | CHG lessor Id                         |                         |
| assetId          | CHG asset Id                          |                         |
| leaseScheduleId  | CHG lease schedule Id                 |                         |
| paymentDate      | Payment date for the asset            |                         |
| periodBegin      | Start payment period of the asset     | Optional                |
| periodEnd        | End payment period of the asset       | Optional                |
| amount           | Payment amount for the payment period |                         |
| currency         | Currency of amount                    | ISO 4217 Code, e.g. EUR |