Create (or update existing) Invoice Attributes
Create (or update existing) Invoice Attributes
Path Parameters
departmentUuid string required
invoiceGuid string required
application/json
Request Body required
attributes object
Responses
- 200
OK
*/*
Schema
Example (from schema)
Schema
errors object[]
warnings object[]
attributes object
{
"errors": [
{
"errorCode": 0,
"errorTitle": "string",
"errorMessage": "string",
"errorDescription": "string"
}
],
"warnings": [
{
"warningCode": 0,
"warningTitle": "string",
"warningMessage": "string",
"warningDescription": "string"
}
],
"attributes": {}
}
PATCH /v4/departments/:departmentUuid/invoices/:invoiceGuid/attributes
Authorization
name: basicAuthtype: httpscheme: basic
Request
Request
curl / cURL
curl -L -X PATCH '/payment/v4/departments/:departmentUuid/invoices/:invoiceGuid/attributes' \
-H 'Content-Type: application/json' \
-H 'Accept: */*' \
--data-raw '{
"attributes": {}
}'
python / requests
curl -L -X PATCH '/payment/v4/departments/:departmentUuid/invoices/:invoiceGuid/attributes' \
-H 'Content-Type: application/json' \
-H 'Accept: */*' \
--data-raw '{
"attributes": {}
}'
go / native
curl -L -X PATCH '/payment/v4/departments/:departmentUuid/invoices/:invoiceGuid/attributes' \
-H 'Content-Type: application/json' \
-H 'Accept: */*' \
--data-raw '{
"attributes": {}
}'
nodejs / axios
curl -L -X PATCH '/payment/v4/departments/:departmentUuid/invoices/:invoiceGuid/attributes' \
-H 'Content-Type: application/json' \
-H 'Accept: */*' \
--data-raw '{
"attributes": {}
}'
ruby / Net::HTTP
curl -L -X PATCH '/payment/v4/departments/:departmentUuid/invoices/:invoiceGuid/attributes' \
-H 'Content-Type: application/json' \
-H 'Accept: */*' \
--data-raw '{
"attributes": {}
}'
csharp / RestSharp
curl -L -X PATCH '/payment/v4/departments/:departmentUuid/invoices/:invoiceGuid/attributes' \
-H 'Content-Type: application/json' \
-H 'Accept: */*' \
--data-raw '{
"attributes": {}
}'
php / cURL
curl -L -X PATCH '/payment/v4/departments/:departmentUuid/invoices/:invoiceGuid/attributes' \
-H 'Content-Type: application/json' \
-H 'Accept: */*' \
--data-raw '{
"attributes": {}
}'
java / OkHttp
curl -L -X PATCH '/payment/v4/departments/:departmentUuid/invoices/:invoiceGuid/attributes' \
-H 'Content-Type: application/json' \
-H 'Accept: */*' \
--data-raw '{
"attributes": {}
}'
powershell / RestMethod
curl -L -X PATCH '/payment/v4/departments/:departmentUuid/invoices/:invoiceGuid/attributes' \
-H 'Content-Type: application/json' \
-H 'Accept: */*' \
--data-raw '{
"attributes": {}
}'