addAddress
post
                    /ccagent/v1/organizationAddresses
Add Address. This endpoint is used to add addresses 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. 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
 
Header Parameters
                - 
                        X-CCAgentContext: string
                        
                        The Agent Context is a JSON object with shopperProfileId as a property.
 - 
                        X-CCAsset-Language(optional): string
                        
                        The asset language of the request. E.g., en,de,fr_CA.
 - 
                        X-CCOrganization(optional): string
                        
                        the organization Id
 
Root Schema : addAddress_request
    
      Type: 
      
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
        Show Source
        object- 
            address: 
            object  address
            
            Address created for the Organization.
 - 
            addressType: 
            string
            Address type represents nick name of account if present else repository ID of address item. This is a mandatory field
 
Example:
    
    
{
    "address":{
        "isDefaultBillingAddress":true,
        "country":"US",
        "types":[
            {
                "id":"at200001"
            }
        ],
        "phoneNumber":"973-974-1234",
        "address2":"Street 2",
        "city":"Montgomery",
        "address1":"600 Dexter Avenue",
        "postalCode":"36130",
        "companyName":"Oracle",
        "isDefaultShippingAddress":true,
        "state":"AL"
    },
    "addressType":"Office Address"
}Nested Schema : address
    
      Type: 
      
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    objectAddress created for the Organization.
    
    
    
    
        Show Source
        - 
            address1: 
            string
            The address1 of the secondary address. This is a mandatory field.
 - 
            address2(optional): 
            string
            The address2 of the secondary address
 - 
            city: 
            string
            The city of the secondary address. This is a mandatory field.
 - 
            companyName: 
            string
            Company name of the secondary address. This is a mandatory field
 - 
            country: 
            string
            The country of the address. This is a mandatory field.
 - 
            isDefaultBillingAddress(optional): 
            boolean
            Marks an address as default billing address. Default value is false. Accepts true or false
 - 
            isDefaultShippingAddress(optional): 
            boolean
            Marks an address as default shipping address. Default value is false. Accepts true or false
 - 
            phoneNumber(optional): 
            string
            Phone Number of the address.
 - 
            postalCode: 
            string
            Postal Code of the address. This is a mandatory field
 - 
            state: 
            string
            The State of the address. This is a mandatory field
 - 
            types(optional): 
            array  types
            
            The types tagged to the address
 
Nested Schema : items
    
      Type: 
      
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
        Show Source
        object- 
            id(optional): 
            string
            repository Id of the address type
 
Response
Supported Media Types
                - application/json
 
200 Response
Following model is returned when operation succeeds.
                
                
                    Root Schema : addAddress_response
    
      Type: 
      
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
        Show Source
        object- 
            address(optional): 
            object  address
            
            Address Object for the Organization.
 - 
            addressType(optional): 
            string
            Address type represents nick name of account if present else repository ID of address item.
 
Nested Schema : address
    
      Type: 
      
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    objectAddress Object for the Organization.
    
    
    
    
        Show Source
        - 
            address1(optional): 
            string
            The address1 of the secondary address
 - 
            address2(optional): 
            string
            The address2 of the secondary address
 - 
            city(optional): 
            string
            The city of the secondary address
 - 
            companyName(optional): 
            string
            Company name of the secondary address
 - 
            country(optional): 
            string
            The country of the address
 - 
            externalAddressId(optional): 
            string
            External address id
 - 
            phoneNumber(optional): 
            string
            Phone Number of the address
 - 
            postalCode(optional): 
            string
            Postal Code of the address
 - 
            repositoryId(optional): 
            string
            repository Id of the address
 - 
            state(optional): 
            string
            The State of the address
 - 
            types(optional): 
            array  types
            
            The types tagged to the address
 
Nested Schema : items
    
      Type: 
      
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
        Show Source
        object- 
            displayName(optional): 
            string
            The name of the address type
 - 
            id(optional): 
            string
            repository Id of the address type
 - 
            repositoryId(optional): 
            string
            repository Id of the address type
 
Example Response (application/json)
                    {
    "address":{
        "country":"US",
        "externalAddressId":"EXT_ADDR_1",
        "types":[
            "ss-10002"
        ],
        "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|
|------------------|------------------|
|100183|If input or nickname given is null/empty|
|100030|Postal Code is required|
|100031|Country is required|
|100053|If the organization invalid default billing address value|
|100032|No State Region is found|
|100054|If the organization invalid default shipping address value|
|100076|Invalid Secondary Addresses|
|82005000|If there is an error while processing the AgentContext header. Possible reasons include invalid profileId, incorrect JSON format or other errors|
|23015|Phone Number is required|
|23005|Phone Number is invalid|
|80018|If an invalid country is provided|
|100067|If an invalid state is provided|
|100189|Duplicate Addresses Type are giving in input|
|100026|Company Name is required|
|89103|If no shopperProfileId is passed in the AgentContext header|
|100027|Address 1 is required|
|89102|If the shopperProfile passed in the AgentContext header or the associated account is inactive|
|100028|City is required|
|89101|If the shopperProfile passed in the AgentContext header is not an administrator for the account|
|100029|State is required|
|100192|One of the dynamic properties is not writable by the Agent user|
|180106|One or more address type ID is invalid|
|
                
                
                    Root Schema : errorModel
    
      Type: 
      
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
        Show Source
        object- 
            devMessage(optional): 
            string
            An optional non-localized message containing technical information for developers
 - 
            errorCode(optional): 
            string
            The numerical code identifying the error
 - 
            errors(optional): 
            array  errors
            
            An optional list of errors if multiple errors were encountered
 - 
            message(optional): 
            string
            The localized message describing the error
 - 
            moreInfo(optional): 
            string
            An optional non-localized message with more information
 - 
            o:errorPath(optional): 
            string
            An optional machine readable description of where the error occurred
 - 
            status(optional): 
            string
            The HTTP status code
 - 
            type(optional): 
            string
            The URI to the HTTP state code definition
 
Nested Schema : errors
    
      
      Type: 
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    arrayAn optional list of errors if multiple errors were encountered
    
    
    
    
    
        Show Source
        
        
    
    
    
    
    
    
Nested Schema : items
    
      Type: 
      
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
        Show Source
        object- 
            devMessage(optional): 
            string
            An optional non-localized message containing technical information for developers
 - 
            errorCode(optional): 
            string
            The numerical code identifying the error
 - 
            message(optional): 
            string
            The localized message describing the error
 - 
            moreInfo(optional): 
            string
            An optional non-localized message with more information
 - 
            o:errorPath(optional): 
            string
            An optional machine readable description of where the error occurred
 - 
            status(optional): 
            string
            The HTTP status code