updateProfileAddress

put

/ccagent/v1/profiles/{id}/addresses/{addressId}

Update profile address of the customer. If the customer is B2B, then the customer should have profile address manager role in that organization.

Request

Supported Media Types
Path Parameters
Body ()
Root Schema : updateProfileAddress_request
Type: object
Show Source
Example:
{
    "address":{
        "lastName":"Anderson",
        "country":"US",
        "types":[
            {
                "id":"at200001"
            }
        ],
        "address3":"",
        "city":"Buffalo",
        "address2":"",
        "address1":"1234, International Avenue",
        "postalCode":"32305",
        "companyName":"Oracle",
        "firstName":"kim",
        "phoneNumber":"813-123-1234",
        "repositoryId":"ss-12345",
        "state":"FL"
    },
    "addressType":"Home"
}
Nested Schema : address
Type: object
The address object of the profile
Show Source
Nested Schema : types
Type: array
The types tagged to the address
Show Source
Nested Schema : items
Type: object
Show Source
Back to Top

Response

Supported Media Types

200 Response

Following model is returned when operation succeeds.
Body ()
Root Schema : updateProfileAddress_response
Type: object
Show Source
Nested Schema : address
Type: object
The address object of the profile
Show Source
Nested Schema : types
Type: array
The types tagged to the address
Show Source
Nested Schema : items
Type: object
Show Source
Example Response (application/json)
{
    "address":{
        "firstName":"tr",
        "lastName":"et",
        "country":"US",
        "externalAddressId":"EXT_ADDR_1",
        "types":[
            {
                "displayName":"Billing",
                "repositoryId":"ss-10002",
                "id":"SHIPPING"
            }
        ],
        "phoneNumber":"631-748-6479",
        "address2":"et",
        "city":"te",
        "address1":"et",
        "postalCode":"35005",
        "repositoryId":"130023",
        "state":"AL"
    },
    "addressType":"tertr",
    "links":[
        {
            "rel":"self",
            "href":"http://localhost:9080/ccagentui/v1/profiles/se-570031/addresses/130023"
        }
    ]
}

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| |------------------|------------------| |22030|User is not logged in| |22031|Internal error during get profile| |22032|Error occurred due to invalid data| |22002|No profile found with profile id| |89103|The current user does not have administrator privileges and is not associated to an account| |100190|Error occurred while attempting to fetch addresses from the repository.| |22038|Invalid Address ID : address is not associated with user profile.| |89101|User {0} does not have required permission to manage addresses.| |100186|Updating of multiple address is not allowed| |100183|Addresses is required| |23010|City is not specified| |23011|Address line 1 not specified| |22000|The profile id passes is null or empty.| |23012|No last name specified in shipping address| |22001|Internal error while getting the profile.| |23013|No first name specified in shipping address| |23015|Phone number not specified in shipping address| |23005|Invalid phone number is specified| |23007|No country is specified | |23008|Postal code is not specified| |100077|One of the dynamic properties is not writable by the Agent user| |180106|One or more address type ID is invalid| |
Body ()
Root Schema : errorModel
Type: object
Show Source
Nested Schema : errors
Type: array
An optional list of errors if multiple errors were encountered
Show Source
Nested Schema : items
Type: object
Show Source
Back to Top