Skip to main content

Replaces old Attributes with new ones


ApiScope: payment.invoice.write
API Scope Level: DepartmentScope
Path Parameters
    departmentUuid string required
    invoiceGuid string required
Request Body required
    attributes object
    property name* string
Responses

OK


Schema
    errors object[]
  • Array [
  • errorCode int32
    errorTitle string
    errorMessage string
    errorDescription string
  • ]
  • warnings object[]
  • Array [
  • warningCode int32
    warningTitle string
    warningMessage string
    warningDescription string
  • ]
  • attributes object
    property name* string
PUT /v4/departments/:departmentUuid/invoices/:invoiceGuid/attributes

Authorization

name: basicAuthtype: httpscheme: basic

Request

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