createPaymentReport
ApiScope: payment.report.create
API Scope Level: DealerScope
Path Parameters
dealerUuid string required
application/json
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
- 200
OK
*/*
Schema
Example (from schema)
Schema
errors object[]
warnings object[]
{
"errors": [
{
"errorCode": 0,
"errorTitle": "string",
"errorMessage": "string",
"errorDescription": "string"
}
],
"warnings": [
{
"warningCode": 0,
"warningTitle": "string",
"warningMessage": "string",
"warningDescription": "string"
}
]
}
POST /v4/dealers/:dealerUuid/reports
Authorization
name: basicAuthtype: httpscheme: basic
Request
Request
curl / cURL
curl -L -X POST '/payment/v4/dealers/:dealerUuid/reports' \
-H 'Content-Type: application/json' \
-H 'Accept: */*' \
--data-raw '{
"dealerUUID": "string",
"startingDate": "string",
"closingDate": "string",
"sendEmail": true,
"sendToCustomRecipients": true,
"customRecipients": "string",
"format": "html",
"reportType": "DailyClosingReport",
"sendAsynchronously": true,
"sendAsAttachment": true
}'
python / requests
curl -L -X POST '/payment/v4/dealers/:dealerUuid/reports' \
-H 'Content-Type: application/json' \
-H 'Accept: */*' \
--data-raw '{
"dealerUUID": "string",
"startingDate": "string",
"closingDate": "string",
"sendEmail": true,
"sendToCustomRecipients": true,
"customRecipients": "string",
"format": "html",
"reportType": "DailyClosingReport",
"sendAsynchronously": true,
"sendAsAttachment": true
}'
go / native
curl -L -X POST '/payment/v4/dealers/:dealerUuid/reports' \
-H 'Content-Type: application/json' \
-H 'Accept: */*' \
--data-raw '{
"dealerUUID": "string",
"startingDate": "string",
"closingDate": "string",
"sendEmail": true,
"sendToCustomRecipients": true,
"customRecipients": "string",
"format": "html",
"reportType": "DailyClosingReport",
"sendAsynchronously": true,
"sendAsAttachment": true
}'
nodejs / axios
curl -L -X POST '/payment/v4/dealers/:dealerUuid/reports' \
-H 'Content-Type: application/json' \
-H 'Accept: */*' \
--data-raw '{
"dealerUUID": "string",
"startingDate": "string",
"closingDate": "string",
"sendEmail": true,
"sendToCustomRecipients": true,
"customRecipients": "string",
"format": "html",
"reportType": "DailyClosingReport",
"sendAsynchronously": true,
"sendAsAttachment": true
}'
ruby / Net::HTTP
curl -L -X POST '/payment/v4/dealers/:dealerUuid/reports' \
-H 'Content-Type: application/json' \
-H 'Accept: */*' \
--data-raw '{
"dealerUUID": "string",
"startingDate": "string",
"closingDate": "string",
"sendEmail": true,
"sendToCustomRecipients": true,
"customRecipients": "string",
"format": "html",
"reportType": "DailyClosingReport",
"sendAsynchronously": true,
"sendAsAttachment": true
}'
csharp / RestSharp
curl -L -X POST '/payment/v4/dealers/:dealerUuid/reports' \
-H 'Content-Type: application/json' \
-H 'Accept: */*' \
--data-raw '{
"dealerUUID": "string",
"startingDate": "string",
"closingDate": "string",
"sendEmail": true,
"sendToCustomRecipients": true,
"customRecipients": "string",
"format": "html",
"reportType": "DailyClosingReport",
"sendAsynchronously": true,
"sendAsAttachment": true
}'
php / cURL
curl -L -X POST '/payment/v4/dealers/:dealerUuid/reports' \
-H 'Content-Type: application/json' \
-H 'Accept: */*' \
--data-raw '{
"dealerUUID": "string",
"startingDate": "string",
"closingDate": "string",
"sendEmail": true,
"sendToCustomRecipients": true,
"customRecipients": "string",
"format": "html",
"reportType": "DailyClosingReport",
"sendAsynchronously": true,
"sendAsAttachment": true
}'
java / OkHttp
curl -L -X POST '/payment/v4/dealers/:dealerUuid/reports' \
-H 'Content-Type: application/json' \
-H 'Accept: */*' \
--data-raw '{
"dealerUUID": "string",
"startingDate": "string",
"closingDate": "string",
"sendEmail": true,
"sendToCustomRecipients": true,
"customRecipients": "string",
"format": "html",
"reportType": "DailyClosingReport",
"sendAsynchronously": true,
"sendAsAttachment": true
}'
powershell / RestMethod
curl -L -X POST '/payment/v4/dealers/:dealerUuid/reports' \
-H 'Content-Type: application/json' \
-H 'Accept: */*' \
--data-raw '{
"dealerUUID": "string",
"startingDate": "string",
"closingDate": "string",
"sendEmail": true,
"sendToCustomRecipients": true,
"customRecipients": "string",
"format": "html",
"reportType": "DailyClosingReport",
"sendAsynchronously": true,
"sendAsAttachment": true
}'