Skip to main content

paymentLog


ApiScope: payment.report.log.create
API Scope Level: DealerScope
Path Parameters
    dealerUuid string required
Request Body required
    dealerUuid string
    reportType string

    Possible values: [DailyClosingReport, DailyActivityReport, MonthlyExecutiveReport]

    status string

    Possible values: [Open, Closed]

    emailSent boolean
    sentFor date-time
    callbackEventUuid string
Responses

OK


Schema
    errors object[]
  • Array [
  • errorCode int32
    errorTitle string
    errorMessage string
    errorDescription string
  • ]
  • warnings object[]
  • Array [
  • warningCode int32
    warningTitle string
    warningMessage string
    warningDescription string
  • ]
POST /v4/dealers/:dealerUuid/reports/audit-logs

Authorization

name: basicAuthtype: httpscheme: basic

Request

Base URL
/payment
Username
Password
dealerUuid — path required
Body required
{
"dealerUuid": "string",
"reportType": "DailyClosingReport",
"status": "Open",
"emailSent": true,
"sentFor": "2025-03-28T11:34:46.511Z",
"callbackEventUuid": "string"
}
curl / cURL
curl -L -X POST '/payment/v4/dealers/:dealerUuid/reports/audit-logs' \
-H 'Content-Type: application/json' \
-H 'Accept: */*' \
--data-raw '{
"dealerUuid": "string",
"reportType": "DailyClosingReport",
"status": "Open",
"emailSent": true,
"sentFor": "2025-03-28T11:34:46.511Z",
"callbackEventUuid": "string"
}'