Skip to main content

Send Payment Request


ApiScope: payment.paymentrequest.write
API Scope Level: DepartmentScope
Path Parameters
    departmentUuid string required
Request Body required
    invoiceGuid string
    sendWithoutKpay boolean
    attachInvoice boolean
    sendAsText boolean
    sendAsEmail boolean
    esignRequired boolean
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
  • ]
  • paymentLink string
    invoiceLink string
    textSent string

    Possible values: [SUCCESS, FAILURE]

    emailSent string

    Possible values: [SUCCESS, FAILURE]

POST /v4/departments/:departmentUuid/payment-requests

Authorization

name: basicAuthtype: httpscheme: basic

Request

Base URL
/payment
Username
Password
departmentUuid — path required
Body required
{
"invoiceGuid": "string",
"sendWithoutKpay": true,
"attachInvoice": true,
"sendAsText": true,
"sendAsEmail": true,
"esignRequired": true
}
curl / cURL
curl -L -X POST '/payment/v4/departments/:departmentUuid/payment-requests' \
-H 'Content-Type: application/json' \
-H 'Accept: */*' \
--data-raw '{
"invoiceGuid": "string",
"sendWithoutKpay": true,
"attachInvoice": true,
"sendAsText": true,
"sendAsEmail": true,
"esignRequired": true
}'