Skip to main content

getPaymentReport


ApiScope: payment.closingReport.read
API Scope Level: ServiceSubscriberScope
Request Body required
    dealerUUID string
    startingDate string
    closingDate string
    sendEmail boolean
    sendToCustomRecipients boolean
    customRecipients string
    format string

    Possible values: [html, pdf]

    reportType string

    Possible values: [DailyClosingReport, DailyActivityReport, MonthlyExecutiveReport]

    sendAsynchronously boolean
    sendAsAttachment boolean
    source string deprecated

    Possible values: [AUTO_PAYMENT_REQUEST, DEALER_APP, API]

Responses

OK


Schema

    string

POST /kpayment/v1/getPaymentReport

Request

Base URL
/payment
Body required
{
"dealerUUID": "string",
"startingDate": "string",
"closingDate": "string",
"sendEmail": true,
"sendToCustomRecipients": true,
"customRecipients": "string",
"format": "html",
"reportType": "DailyClosingReport",
"sendAsynchronously": true,
"sendAsAttachment": true
}
curl / cURL
curl -L -X POST '/payment/kpayment/v1/getPaymentReport' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"dealerUUID": "string",
"startingDate": "string",
"closingDate": "string",
"sendEmail": true,
"sendToCustomRecipients": true,
"customRecipients": "string",
"format": "html",
"reportType": "DailyClosingReport",
"sendAsynchronously": true,
"sendAsAttachment": true
}'