listAddresses
get
/ccagent/v1/addresses
List Addresses. This operation is used to get the list of addresses based on the search criteria provided. 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
Query Parameters
-
addressType: string
Exact nick name to search. Wild card/Partial / Case insensitive search is not supported
-
include: string
Query string to get all/inherited secondaryAddresses. "all"/"inheritedOnly" are the only allowed values. If include is not specified, seondaryAddresses of that organization is returned.
-
includeCustomProperties: 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: string
This is the field to determine number of records to be fetched per REST call.
-
offset: string
This field determines the offset/starting index from which data to be fetched.
-
orgId(required): string
Organization Id whose addresses has to be fetched
-
q: string
SCIM query to search on the address properties. Search on all the address possible except repositoryId and addressType
-
queryFormat: string
queryFormat to search on the address properties. Possible values SCIM or null.
-
sort: string
This is the field to provide sort on the address properties except addressType.
-
totalResults: boolean
Tells whether to include total and totalResults in the SCIM query.By default the value is true
Header Parameters
-
X-CCAgentContext: string
The Agent Context is a JSON object with shopperProfileId as a property.
-
X-CCAsset-Language: string
The asset language of the request. E.g., en,de,fr_CA.
-
X-CCOrganization: string
the organization Id
Response
Supported Media Types
- application/json
200 Response
Following model is returned when operation succeeds.
Root Schema : listAddresses_response
Type:
Show Source
object
-
items:
array items
List of all the addresses associated with an Organization, if property like ???isDefaultShippingAddress??? or ???isDefaultBillingAddress??? is set to ???true???, then in response the same address will come as a separate attribute with name 'shippingAddress' or 'billingAddress'.
-
limit:
string
Number of records to be fetched.
-
offset:
string
The offset provided.
-
total:
string
Total number of records present in database matching the searched string.
-
totalResults:
string
Total number of records present in database matching the searched string.
Nested Schema : items
Type:
array
List of all the addresses associated with an Organization, if property like ???isDefaultShippingAddress??? or ???isDefaultBillingAddress??? is set to ???true???, then in response the same address will come as a separate attribute with name 'shippingAddress' or 'billingAddress'.
Show Source
Nested Schema : items
Type:
Show Source
object
-
address:
object address
Address created for the Organization.
-
addressType:
string
Address type represents nick name of address if present else repository ID of address item.
Nested Schema : address
Type:
object
Address created for the Organization.
Show Source
-
address1:
string
The address1 of the secondary address
-
address2:
string
The address2 of the secondary address
-
city:
string
The city of the secondary address
-
companyName:
string
Company name of the secondary address
-
country:
string
The country of the address
-
externalAddressId:
string
External address id
-
id:
string
Repository id of the address. This field should be used inorder to support sort on the repository id
-
phoneNumber:
string
Phone Number of the address
-
postalCode:
string
Postal Code of the address
-
repositoryId:
string
Repository id of the address. Deprecated this property. Use id instead
-
state:
string
The State of the address
-
types:
array types
The types tagged to the address
Nested Schema : items
Type:
Show Source
object
-
displayName:
string
The name of the address type
-
id:
string
repository Id of the address type
-
repositoryId:
string
repository Id of the address type
Example Response (application/json)
{
"total":1,
"totalResults":1,
"offset":0,
"limit":1,
"links":[
{
"rel":"self",
"href":"/ccagent/v1/addresses?orgId=100001&q=country eq \"US\"&addressType=Office Address"
}
],
"items":[
{
"address":{
"country":"US",
"externalAddressId":"EXT_ADDR_1",
"types":[
{
"displayName":"shipping",
"repositoryId":"ss-10002",
"id":"SHIPPING"
}
],
"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|
|10002|The value x for parameter 'y' is invalid. 'y' can be 'limit', 'offset' or 'sort'.|
|89102|If the shopperProfile passed in the AgentContext header or the associated account is inactive|
Root Schema : errorModel
Type:
Show Source
object
-
devMessage:
string
An optional non-localized message containing technical information for developers
-
errorCode:
string
The numerical code identifying the error
-
errors:
array errors
An optional list of errors if multiple errors were encountered
-
message:
string
The localized message describing the error
-
moreInfo:
string
An optional non-localized message with more information
-
o:errorPath:
string
An optional machine readable description of where the error occurred
-
status:
string
The HTTP status code
-
type:
string
The URI to the HTTP state code definition
Nested Schema : errors
Type:
array
An optional list of errors if multiple errors were encountered
Show Source
Nested Schema : items
Type:
Show Source
object
-
devMessage:
string
An optional non-localized message containing technical information for developers
-
errorCode:
string
The numerical code identifying the error
-
message:
string
The localized message describing the error
-
moreInfo:
string
An optional non-localized message with more information
-
o:errorPath:
string
An optional machine readable description of where the error occurred
-
status:
string
The HTTP status code