listProfileAddresses

get

/ccapp/v1/profiles/{id}/addresses

Get Profile Addresses specific to the customer profile.

Request

Supported Media Types
Path Parameters
Query Parameters
Back to Top

Response

Supported Media Types

200 Response

Following model is returned when operation succeeds.
Body ()
Root Schema : listProfileAddresses_response
Type: object
Show Source
Nested Schema : items
Type: array
Addresses related properties
Show Source
Nested Schema : items
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)
{
    "total":2,
    "totalResults":2,
    "offset":0,
    "limit":8,
    "links":[
        {
            "rel":"self",
            "href":"http://localhost:9080/ccadminui/v1/profiles/bb-110023/addresses?limit=8&offset=0"
        }
    ],
    "items":[
        {
            "address":{
                "country":"US",
                "lastName":"Anderson",
                "types":[
                    {
                        "displayName":"Billing",
                        "repositoryId":"ss-10002",
                        "id":"ss-10002"
                    }
                ],
                "address3":null,
                "city":"Buffalo",
                "address2":null,
                "prefix":null,
                "address1":"451 Brooks Ave",
                "postalCode":"14201",
                "jobTitle":null,
                "companyName":null,
                "county":null,
                "suffix":null,
                "firstName":"Kim",
                "phoneNumber":"212-555-2150",
                "repositoryId":"se-970031",
                "faxNumber":null,
                "middleName":null,
                "state":"NY",
                "id":"se-970031"
            },
            "addressType":"test2##0"
        },
        {
            "address":{
                "country":"US",
                "lastName":"Smith",
                "types":[
                    {
                        "displayName":"Shipping",
                        "repositoryId":"ss-10001",
                        "id":"ss-10001"
                    }
                ],
                "address3":null,
                "city":"New York",
                "address2":null,
                "prefix":null,
                "address1":"14 New Ave",
                "postalCode":"34563",
                "jobTitle":null,
                "companyName":null,
                "county":null,
                "suffix":null,
                "firstName":"John",
                "phoneNumber":"667-45-2345",
                "repositoryId":"ss-456631",
                "faxNumber":null,
                "middleName":null,
                "state":"NY",
                "id":"ss-456631"
            },
            "addressType":"This ##0"
        }
    ]
}

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| |------------------|------------------| |22031|Internal error during get profile| |22002|No profile found with profile id| |100190|Error occurred while attempting to fetch addresses from the repository.|
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