Updating a Shipping Address
📋 Prerequisites
- An existing Account on DJUST
- A Shipping Address associated with the Account on DJUST
✅ Required Fields
accountExternalId
addressExternalId
addressFullName
addressCountry
addressCity
addressZipCode
addressStreetName
☑️ Optional Fields
You can find the complete list of optional fields at the following link: Account - Fields
🔍 Example
[
{
"accountExternalId":"0987654321",
"shippingAddress":[
{
"addressExternalId":"ADDR54321",
"addressFullName":"John Smith",
"addressCountry":"Canada",
"addressCity":"Toronto",
"addressZipCode":"M5H 2N2",
"addressStreetName":"456 Queen St W"
}
]
}
]
Existing Shipping Address linked to another AccountYou can associate a Shipping Address that is already linked to another Account with a new Account. The required fields remain the same.
However, please keep the following in mind:
- You cannot use only the
addressExternalId
to perform this operation.- You cannot update an existing Shipping Address while simultaneously associating it with a new Account. This process must be done in two steps.
❌ Possible Errors
Code | Message |
---|---|
F-E-001 | Missing mandatory field |
F-E-033 | Account or Shipping Address not found in DJUST |
Updated 18 days ago