Skip to main content

Update transaction attributes by transaction uuid


ApiScope: payment.transaction.details
API Scope Level: DepartmentScope
Path Parameters
    departmentUuid string required
    transactionUuid string required
Request Body required
    attributes object
    property name* string
Responses

OK


Schema
    property name* string
PATCH /v4/departments/:departmentUuid/transactions/:transactionUuid/attributes

Authorization

name: basicAuthtype: httpscheme: basic

Request

Base URL
/payment
Username
Password
departmentUuid — path required
transactionUuid — path required
Body required
{
"attributes": {}
}
curl / cURL
curl -L -X PATCH '/payment/v4/departments/:departmentUuid/transactions/:transactionUuid/attributes' \
-H 'Content-Type: application/json' \
-H 'Accept: */*' \
--data-raw '{
"attributes": {}
}'