get Address for an Organization
get
/ccadmin/v1/organizations/{id}/secondaryAddresses/{addressId}
Get Organization Address. This endpoint is used to get secondary address of an Organization in Oracle Commerce Cloud.
Request
Supported Media Types
- application/json
Path Parameters
- addressId
-
Type:
stringRequired:trueThe address id of the requested address for an Organization.- id
Type:stringRequired:trueThe ID of the requested Organization.
Header Parameters
- X-CCAsset-Language
-
Type:
stringThe asset language of the request. E.g., en,de,fr_CA.
Response
Supported Media Types
- application/json
200 Response
Following model is returned when operation succeeds.
Body
Root Schema : getOrganizationAddress_response
- address
-
Type:
objectaddressAdditional Properties Allowed:Updated address for the Organization. - addressType
-
Type:
stringAddress type represents nick name of account if present else repository ID of address item.
Nested Schema : address
Type:
objectUpdated address for the Organization.
- address1
-
Type:
stringThe address1 of the secondary address. - address2
-
Type:
stringThe address2 of the secondary address - city
-
Type:
stringThe city of the secondary address. - companyName
-
Type:
stringCompany name of the secondary address. - country
-
Type:
stringThe country of the address. - phoneNumber
-
Type:
stringPhone Number of the address. - postalCode
-
Type:
stringPostal Code of the address. - state
-
Type:
stringThe State of the address.
Example application/json
{
"address":{
"country":"US",
"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":"/ccadminui/v1/organizations/or-100001/secondaryAddresses/280004"
}
]
}
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|
|------------------|------------------|
|100185|Invalid Address ID : No Address is found with the given id|
|100000|If input passed is invalid|
|100001|If there was no organization found with the given id|
Body
Root Schema : errorModel
Type:
object- devMessage
-
Type:
stringAn optional non-localized message containing technical information for developers - errorCode
-
Type:
stringThe numerical code identifying the error - errors
-
Type:
arrayerrorsAdditional Properties Allowed:An optional list of errors if multiple errors were encountered - message
-
Type:
stringThe localized message describing the error - moreInfo
-
Type:
stringAn optional non-localized message with more information - o:errorPath
-
Type:
stringAn optional machine readable description of where the error occurred - status
-
Type:
stringThe HTTP status code - type
-
Type:
stringThe URI to the HTTP state code definition
Nested Schema : errors
Nested Schema : items
Type:
object- devMessage
-
Type:
stringAn optional non-localized message containing technical information for developers - errorCode
-
Type:
stringThe numerical code identifying the error - message
-
Type:
stringThe localized message describing the error - moreInfo
-
Type:
stringAn optional non-localized message with more information - o:errorPath
-
Type:
stringAn optional machine readable description of where the error occurred - status
-
Type:
stringThe HTTP status code
Examples
Sample Response Payload returned by endpoint:
{
"address": {
"country": "US",
"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": "/ccadminui/v1/organizations/or-100001/secondaryAddresses/280004"
}]
}