Skip to main content

voidCaptureRefund


ApiScope: payment.all
API Scope Level: DepartmentScope
Path Parameters
    departmentUuid string required
Request Body required
    invoiceId string
    type string
    amount number
Responses

OK


Schema
    error object
    errorCode string
    errorDescription string
    warnings object[]
  • Array [
  • warningCode string
    warningDescription string
  • ]
  • transactionId string
    invoiceId string
    amountRefunded string
    amountVoided string
    amountCaptured string
POST /v3/department/:departmentUuid/process

Request

Base URL
/payment
departmentUuid — path required
Body required
{
"invoiceId": "string",
"type": "string",
"amount": 0
}
curl / cURL
curl -L -X POST '/payment/v3/department/:departmentUuid/process' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"invoiceId": "string",
"type": "string",
"amount": 0
}'