Skip to main content

updatePaymentAttempt


ApiScope: payment.paymentattempt.update
API Scope Level: ServiceSubscriberScope
Path Parameters
    paymentAttempt int64 required
Request Body required
    amount number
    status string

    Possible values: [Created, RequiresAction, Processing, Successful, Failed, Exception, GatewayException]

    surchargeAmount number
    salesTaxAmount number
    attributes object
    property name* string
Responses

OK


Schema

    object

PUT /kpayment/v1/paymentAttempts/:paymentAttempt

Request

Base URL
/payment
paymentAttempt — path required
Body required
{
"amount": 0,
"status": "Created",
"surchargeAmount": 0,
"salesTaxAmount": 0,
"attributes": {}
}
curl / cURL
curl -L -X PUT '/payment/kpayment/v1/paymentAttempts/:paymentAttempt' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"amount": 0,
"status": "Created",
"surchargeAmount": 0,
"salesTaxAmount": 0,
"attributes": {}
}'