PUT
/
openapi
/
v1
/
Customers
/
{customerNo}
/
address
/
{addressNo}
Update Address of Customer.
curl --request PUT \
  --url https://api.oplog.one/openapi/v1/Customers/{customerNo}/address/{addressNo} \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json-patch+json' \
  --data '{
  "addressFirstName": "<string>",
  "addressLastName": "<string>",
  "company": "<string>",
  "addressOne": "<string>",
  "addressTwo": "<string>",
  "district": "<string>",
  "city": "<string>",
  "postalCode": "<string>",
  "country": "<string>",
  "addressPhone": "<string>"
}'

Authorizations

Authorization
string
header
required

Headers

X-Tenant-Id
string

If you want to emulate, please enter TenantId.

Path Parameters

customerNo
integer
required
addressNo
integer
required

Body

addressFirstName
string
required
addressLastName
string
required
company
string
required
addressOne
string
required
addressTwo
string
required
district
string
required
city
string
required
postalCode
string
required
country
string
required
addressPhone
string
required

Response

200

Success