updateAddress
put
/ccagent/v1/organizationAddresses/{id}
Update Address. This endpoint is used to update address by its id of a Organization/Account in Oracle Commerce Cloud. Takes X-CCAgentContext header which is a JSON object with 'shopperProfileId' as a property. If 'shopperProfileId' is not provided, it is considered as an anonymous profile. The inherited addresses cannot be updated, except setting the existing inherited address to default. Optionally takes X-CCOrganization header which is a JSON field with organization ID as value. If this header is not provided, then the endPoint will consider first active organization as the current organization.
Request
Supported Media Types
- application/json
Path Parameters
- id
-
Type:
string
Required:true
The ID of the address that has to be updated.
Header Parameters
- X-CCAgentContext
-
Type:
string
Required:true
The Agent Context is a JSON object with shopperProfileId as a property.- X-CCAsset-Language
Type:string
The asset language of the request. E.g., en,de,fr_CA.- X-CCOrganization
Type:string
the organization IdBody ParameterRoot Schema : updateAddress_request{ "address":{ "isDefaultBillingAddress":false, "country":"US", "phoneNumber":"973-974-1234", "address2":"Street 2", "city":"Montgomery", "address1":"600 Dexter Avenue", "postalCode":"36130", "companyName":"Oracle New", "isDefaultShippingAddress":false, "state":"AL" }, "addressType":"Office Address New" }
- address
-
Type:
object
addressAdditional Properties Allowed:Updated address for the Organization. - addressType
-
Type:
string
Address type represents nick name of account if present else repository ID of address item.
Nested Schema : addressType:object
Updated address for the Organization.- address1
-
Type:
string
The address1 of the secondary address. - address2
-
Type:
string
The address2 of the secondary address - city
-
Type:
string
The city of the secondary address. - companyName
-
Type:
string
Company name of the secondary address. - country
-
Type:
string
The country of the address. - isDefaultBillingAddress
-
Type:
boolean
Marks an address as default billing address. Default value is false. Accepts true or false - isDefaultShippingAddress
-
Type:
boolean
Marks an address as default shipping address. Default value is false. Accepts true or false - phoneNumber
-
Type:
string
Phone Number of the address. - postalCode
-
Type:
string
Postal Code of the address. - state
-
Type:
string
The State of the address.
Response
Supported Media Types
- application/json
200 Response
Following model is returned when operation succeeds.
Body
Root Schema : updateAddress_response
- address
-
Type:
object
addressAdditional Properties Allowed:Address Object for the Organization. - addressType
-
Type:
string
Address type represents nick name of account if present else repository ID of address item.
Nested Schema : address
Type:
object
Address Object for the Organization.
- address1
-
Type:
string
The address1 of the secondary address - address2
-
Type:
string
The address2 of the secondary address - city
-
Type:
string
The city of the secondary address - companyName
-
Type:
string
Company name of the secondary address - country
-
Type:
string
The country of the address - phoneNumber
-
Type:
string
Phone Number of the address - postalCode
-
Type:
string
Postal Code of the address - repositoryId
-
Type:
string
repository Id of the address - state
-
Type:
string
The State of the address
Example application/json
{
"address":{
"country":"US",
"phoneNumber":"973-974-1234",
"address2":"Street 2",
"city":"Montgomery",
"address1":"600 Dexter Avenue",
"companyName":"National Discount Auto Parts",
"postalCode":"36130",
"repositoryId":"280004",
"state":"AL"
},
"addressType":"Montgomery Office Address",
"links":[
{
"rel":"self",
"href":"/ccagentui/v1/organizationAddresses"
}
]
}
Default Response
The error response.
The following are the internal error codes thrown by this API when the request processing fails in Oracle Commerce Cloud:
|Error Code|Description|
|------------------|------------------|
|80018|If an invalid country is provided|
|100053|If the organization invalid default billing address value|
|100185|If the address's repositoryId is invalid|
|100054|If the organization invalid default shipping address value|
|100067|If an invalid state is provided|
|100188|If input properties passed are Null or empty string|
|82005000|If there is an error while processing the AgentContext header. Possible reasons include invalid profileId, incorrect JSON format or other errors|
|23005|Phone Number is invalid|
|89103|If no shopperProfileId is passed in the AgentContext header|
|89102|If the shopperProfile passed in the AgentContext header or the associated account is inactive|
|89101|If the shopperProfile passed in the AgentContext header is not an administrator for the account|
Body
Root Schema : errorModel
Type:
object
- devMessage
-
Type:
string
An optional non-localized message containing technical information for developers - errorCode
-
Type:
string
The numerical code identifying the error - errors
-
Type:
array
errorsAdditional Properties Allowed:An optional list of errors if multiple errors were encountered - message
-
Type:
string
The localized message describing the error - moreInfo
-
Type:
string
An optional non-localized message with more information - o:errorPath
-
Type:
string
An optional machine readable description of where the error occurred - status
-
Type:
string
The HTTP status code - type
-
Type:
string
The URI to the HTTP state code definition
Nested Schema : errors
Nested Schema : items
Type:
object
- devMessage
-
Type:
string
An optional non-localized message containing technical information for developers - errorCode
-
Type:
string
The numerical code identifying the error - message
-
Type:
string
The localized message describing the error - moreInfo
-
Type:
string
An optional non-localized message with more information - o:errorPath
-
Type:
string
An optional machine readable description of where the error occurred - status
-
Type:
string
The HTTP status code
Examples
Sample Request:
{ "address": { "isDefaultBillingAddress": false, "country": "US", "phoneNumber": "973-974-1234", "address2": "Street 2", "city": "Montgomery", "address1": "600 Dexter Avenue", "postalCode": "36130", "companyName": "Oracle New", "isDefaultShippingAddress": false, "state": "AL" }, "addressType": "Office Address New" }
Sample Response Payload returned by endpoint:
{ "address": { "country": "US", "phoneNumber": "973-974-1234", "address2": "Street 2", "city": "Montgomery", "address1": "600 Dexter Avenue", "companyName": "National Discount Auto Parts", "postalCode": "36130", "repositoryId": "280004", "state": "AL" }, "addressType": "Montgomery Office Address", "links": [{ "rel": "self", "href": "/ccagentui/v1/organizationAddresses" }] }