addAddress

post

/ccstore/v1/organizationAddresses

Add Address. This endpoint is used to add addresses of a Organization/Account in Oracle Commerce Cloud.Optionally takes the X-CCOrganization header to specify current Organization context of logged in user.

Request

Supported Media Types
  • application/json
Header Parameters
X-CCOrganization
Type: string
Current organization context of the logged in user
Body Parameter
Root Schema : addAddress_request
Nested Schema : address
Type: object
Address created for the Organization.

Response

Supported Media Types
  • application/json
200 Response
Following model is returned when operation succeeds.
Body
Root Schema : addAddress_response
Nested Schema : address
Type: object
Address Object for the Organization.
Example application/json

{
    "address":{
        "country":"US",
        "phoneNumber":"973-974-1234",
        "address2":"Street 2",
        "city":"Montgomery",
        "address1":"600 Dexter Avenue",
        "postalCode":"36130",
        "companyName":"Oracle",
        "repositoryId":"180003",
        "state":"AL"
    },
    "addressType":"Office Address",
    "links":[
        {
            "rel":"self",
            "href":"http://localhost:8080/ccstore/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 given in null/empty| |100030|Postal Code is required| |100031|Country is required| |100053|If the organization invalid default billing address value| |100032|No Stage Region is found| |100054|If the organization invalid default shipping address value| |100076|Invalid Secondary Addresses| |23015|Phone Number is required| |23005|Phone Number is invalid| |100189|Duplicate Addresses Type are giving in input| |100026|Company Name is required| |100027|Address 1 is required| |100028|City is required| |100029|State is required| |100000|If input passed is invalid| |100001|If there was no organization found with the given id|
Body
Root Schema : errorModel
Type: object
Nested Schema : errors
Type: array
An optional list of errors if multiple errors were encountered
Nested Schema : items
Type: object

Examples

Sample Request:

{
  "address": {
    "isDefaultBillingAddress": true,
    "country": "US",
    "phoneNumber": "973-974-1234",
    "address2": "Street 2",
    "city": "Montgomery",
    "address1": "600 Dexter Avenue",
    "postalCode": "36130",
    "companyName": "Oracle",
    "isDefaultShippingAddress": true,
    "state": "AL"
  },
  "addressType": "Office Address"
}

Sample Response Payload returned by endpoint:

{
  "address": {
    "country": "US",
    "phoneNumber": "973-974-1234",
    "address2": "Street 2",
    "city": "Montgomery",
    "address1": "600 Dexter Avenue",
    "postalCode": "36130",
    "companyName": "Oracle",
    "repositoryId": "180003",
    "state": "AL"
  },
  "addressType": "Office Address",
  "links": [{
    "rel": "self",
    "href": "http://localhost:8080/ccstore/v1/organizationAddresses"
  }]
}