Update transaction attributes by transaction uuid
ApiScope: payment.transaction.details
API Scope Level: DepartmentScope
Path Parameters
departmentUuid string required
transactionUuid string required
application/json
Request Body required
attributes object
Responses
- 200
OK
*/*
Schema
Example (from schema)
Schema
property name* string
{}
PATCH /v4/departments/:departmentUuid/transactions/:transactionUuid/attributes
Authorization
name: basicAuthtype: httpscheme: basic
Request
Request
curl / cURL
curl -L -X PATCH '/payment/v4/departments/:departmentUuid/transactions/:transactionUuid/attributes' \
-H 'Content-Type: application/json' \
-H 'Accept: */*' \
--data-raw '{
"attributes": {}
}'
python / requests
curl -L -X PATCH '/payment/v4/departments/:departmentUuid/transactions/:transactionUuid/attributes' \
-H 'Content-Type: application/json' \
-H 'Accept: */*' \
--data-raw '{
"attributes": {}
}'
go / native
curl -L -X PATCH '/payment/v4/departments/:departmentUuid/transactions/:transactionUuid/attributes' \
-H 'Content-Type: application/json' \
-H 'Accept: */*' \
--data-raw '{
"attributes": {}
}'
nodejs / axios
curl -L -X PATCH '/payment/v4/departments/:departmentUuid/transactions/:transactionUuid/attributes' \
-H 'Content-Type: application/json' \
-H 'Accept: */*' \
--data-raw '{
"attributes": {}
}'
ruby / Net::HTTP
curl -L -X PATCH '/payment/v4/departments/:departmentUuid/transactions/:transactionUuid/attributes' \
-H 'Content-Type: application/json' \
-H 'Accept: */*' \
--data-raw '{
"attributes": {}
}'
csharp / RestSharp
curl -L -X PATCH '/payment/v4/departments/:departmentUuid/transactions/:transactionUuid/attributes' \
-H 'Content-Type: application/json' \
-H 'Accept: */*' \
--data-raw '{
"attributes": {}
}'
php / cURL
curl -L -X PATCH '/payment/v4/departments/:departmentUuid/transactions/:transactionUuid/attributes' \
-H 'Content-Type: application/json' \
-H 'Accept: */*' \
--data-raw '{
"attributes": {}
}'
java / OkHttp
curl -L -X PATCH '/payment/v4/departments/:departmentUuid/transactions/:transactionUuid/attributes' \
-H 'Content-Type: application/json' \
-H 'Accept: */*' \
--data-raw '{
"attributes": {}
}'
powershell / RestMethod
curl -L -X PATCH '/payment/v4/departments/:departmentUuid/transactions/:transactionUuid/attributes' \
-H 'Content-Type: application/json' \
-H 'Accept: */*' \
--data-raw '{
"attributes": {}
}'