handleFileUploadForDealer
ApiScope: payment.files.upload
API Scope Level: DealerScope
Path Parameters
ServiceSubscriberDealer string required
Query Parameters
fileType string
Possible values: [IMAGE
, PDF
, XSLT
, AUDIO
, VIDEO
, HTML
, XML
, PAYMENT_REPORT_EXCEL
, STRIPE_GATEWAY_REPORT_FILES
, PAYOUT_REPORT_FILES
, ESIG
, OTHER
]
Default value: OTHER
contentType string
application/json
Request Body
file binary required
Responses
- 200
- 400
- 401
- 500
OK
application/json
Schema
Example (from schema)
Schema
errors object[]
warnings object[]
fileName string
fileUrl string
fileKey string
{
"errors": [
{
"errorCode": 0,
"errorTitle": "string",
"errorMessage": "string",
"errorDescription": "string"
}
],
"warnings": [
{
"warningCode": 0,
"warningTitle": "string",
"warningMessage": "string",
"warningDescription": "string"
}
],
"fileName": "string",
"fileUrl": "string",
"fileKey": "string"
}
Bad Request
*/*
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"
}
]
}
Unauthorized
*/*
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"
}
]
}
Internal Server Error
*/*
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 /kpayment/v1/file/:ServiceSubscriberDealer/upload
Request
Request
curl / cURL
curl -L -X POST '/payment/kpayment/v1/file/:ServiceSubscriberDealer/upload' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"file": "string"
}'
python / requests
curl -L -X POST '/payment/kpayment/v1/file/:ServiceSubscriberDealer/upload' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"file": "string"
}'
go / native
curl -L -X POST '/payment/kpayment/v1/file/:ServiceSubscriberDealer/upload' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"file": "string"
}'
nodejs / axios
curl -L -X POST '/payment/kpayment/v1/file/:ServiceSubscriberDealer/upload' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"file": "string"
}'
ruby / Net::HTTP
curl -L -X POST '/payment/kpayment/v1/file/:ServiceSubscriberDealer/upload' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"file": "string"
}'
csharp / RestSharp
curl -L -X POST '/payment/kpayment/v1/file/:ServiceSubscriberDealer/upload' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"file": "string"
}'
php / cURL
curl -L -X POST '/payment/kpayment/v1/file/:ServiceSubscriberDealer/upload' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"file": "string"
}'
java / OkHttp
curl -L -X POST '/payment/kpayment/v1/file/:ServiceSubscriberDealer/upload' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"file": "string"
}'
powershell / RestMethod
curl -L -X POST '/payment/kpayment/v1/file/:ServiceSubscriberDealer/upload' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"file": "string"
}'