listAddresses
get
                    /ccstore/v1/addresses
List Addresses. This operation is used to get the list of addresses of an organization.Optionally takes the X-CCOrganization header  to specify current Organization context of logged in user.
                Request
Supported Media Types
                - application/json
Query Parameters
                - 
                        addressType(optional): string
                        
                        Exact nick name to search. Wild card/Partial / Case insensitive search is not supported
- 
                        include(optional): string
                        
                        Query string to get all/inherited secondaryAddresses. "all"/"inheritedOnly" are the only allowed values. If include is not specified, secondaryAddresses of that organization is returned. If value of include is "all" , then secondaryAddresses of that organization as well as secondaryAddresses of parent organizations is returned. Whereas in case of "inheritedOnly", secondaryAddresses of parentOrganization is returned.
- 
                        includeCustomProperties(optional): boolean
                        
                        The custom properties for the addresses will be returned if this is set to true.Custom properties will also be returned if queryFormat/addressType/q/sort is specified. There is no significance for this property if any of these properties are specified queryFormat/addressType/q/sort
- 
                        limit(optional): string
                        
                        This is the field to determine number of records to be fetched per REST call.
- 
                        offset(optional): string
                        
                        This field determines the offset/starting index from which data to be fetched.
- 
                        orgId: string
                        
                        Organization Id whose addresses has to be fetched
- 
                        q(optional): string
                        
                        SCIM query to search on the address properties. Search on all the address possible except repositoryId and addressType
- 
                        queryFormat(optional): string
                        
                        queryFormat to search on the address properties. Possible values SCIM or null.
- 
                        sort(optional): string
                        
                        This is the field to provide sort on the address properties except addressType.
- 
                        totalResults(optional): boolean
                        
                        Tells whether to include total and totalResults in the SCIM query.By default the value is true
Header Parameters
                - 
                        X-CCOrganization(optional): string
                        
                        Current organization context of the logged in user
Response
Supported Media Types
                - application/json
200 Response
Following model is returned when operation succeeds.
                
                
                    Root Schema : listAddresses_response
    
      Type: 
      
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
        Show Source
        object- 
            items(optional): 
            array  items
            
            List of all the addresses associated with an organization and it's ancestor organizations.
- 
            limit(optional): 
            string
            Number of records to be fetched.
- 
            offset(optional): 
            string
            The offset provided.
- 
            total(optional): 
            string
            Total number of records present in database matching the searched string.
- 
            totalResults(optional): 
            string
            Total number of records present in database matching the searched string.
Nested Schema : items
    
      
      Type: 
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    arrayList of all the addresses associated with an organization and it's ancestor organizations.
    
    
    
    
    
        Show Source
        
        
    
    
    
    
    
    
Nested Schema : items
    
      Type: 
      
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
        Show Source
        object- 
            address(optional): 
            object  address
            
            Address created 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 created 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
- 
            id(optional): 
            string
            Repository id of the address. This field should be used inorder to support sort on the repository 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. Deprecated this property. Use id instead
- 
            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
            display 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)
                    {
    "total":1,
    "totalResults":1,
    "offset":0,
    "limit":1,
    "links":[
        {
            "rel":"self",
            "href":"http://localhost:8080/ccstore/v1/addresses?orgId=10001"
        }
    ],
    "items":[
        {
            "address":{
                "country":"US",
                "externalAddressId":"EXT_ADDR_1",
                "types":[
                    {
                        "displayName":"Billing",
                        "repositoryId":"ss-10002",
                        "id":"ss-10002"
                    },
                    {
                        "displayName":"Shipping",
                        "repositoryId":"ss-10002",
                        "id":"ss-10001"
                    }
                ],
                "phoneNumber":"973-974-1234",
                "address2":"Street 2",
                "city":"Montgomery",
                "address1":"600 Dexter Avenue",
                "postalCode":"36130",
                "companyName":"Oracle",
                "repositoryId":"190001",
                "state":"AL"
            },
            "addressType":"Office Address"
        }
    ]
}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|
|------------------|------------------|
|100191|Invalid query param.|
|100000|If input passed is invalid|
|100001|If there was no organization found with the given id|
                
                
                    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