GET
/
v1
/
{tenantId}
/
billings
/
{billingId}
/
deposit-distribution
curl --request GET \
  --url https://api.debbiecollect.com/v1/{tenantId}/billings/{billingId}/deposit-distribution \
  --header 'Authorization: Bearer <token>'
{
  "meta": {
    "currentPage": 0,
    "pageSize": 25
  },
  "items": [
    {
      "isAdjustment": true,
      "currency": "DKK",
      "depositCaseVoucher": {
        "caseVoucherId": "<string>",
        "id": 123,
        "paymentType": "BANK_TRANSFER",
        "state": "UNMAPPED",
        "transactionAccountId": "<string>",
        "amount": 123
      },
      "customer": {
        "referenceId": "<string>"
      },
      "case": {
        "caseId": "<string>",
        "id": 123,
        "groupId": "<string>",
        "groupLabel": "<string>"
      },
      "caseVouchers": [
        {
          "referenceId": "<string>",
          "caseVoucherId": "<string>",
          "voucherTypeId": "<string>",
          "amount": 123,
          "source": "CREDITOR",
          "collectionCommission": true
        }
      ],
      "overpayment": 123
    }
  ]
}

Authorizations

Authorization
string
header
required

Authentication can be done by using a bearer token in the Authorization header. This is done using the following format Authorization: Bearer {token}.

Path Parameters

tenantId
string
required

Id of the tenant

billingId
string
required

Id of the billing

Response

200
application/json

Successful operation

The response is of type object.