addRegions

post

/ccadmin/v1/countries/{id}/addRegions

Add all the specified regions for the country

Request

Supported Media Types
Path Parameters
  • The ID of the country which is ISO 3166-1 two letter country code.
Body ()
Root Schema : addRegions_request
Type: object
Show Source
Example:
{
    "regions":[
        {
            "regionCode":"LK-GA",
            "displayName":"Galle",
            "abbreviation":"GA"
        },
        {
            "regionCode":"LK-CO",
            "displayName":"Colombo",
            "abbreviation":"CO"
        }
    ]
}
Nested Schema : regions
Type: array
The list of regions for particular country.
Show Source
Nested Schema : items
Type: object
Show Source
Back to Top

Response

Supported Media Types

200 Response

Following model is returned when operation succeeds.
Body ()
Root Schema : addRegions_response
Type: object
Show Source
Nested Schema : regions
Type: array
The list of regions for particular country.
Show Source
Nested Schema : items
Type: object
Show Source
Example Response (application/json)
{
    "regions":[
        {
            "regionCode":"LK-GA",
            "displayName":"Galle",
            "abbreviation":"GA"
        },
        {
            "regionCode":"LK-CO",
            "displayName":"Colombo",
            "abbreviation":"CO"
        }
    ]
}

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| |------------------|------------------| |19000|The country code is either invalid or not configured : {countryId}| |80067|Region {id} already exists| |80062|Invalid input. {key} key must be specified with valid value| |80068|Invalid abbreviation : {abbreviation}. Abbreviation must match the region abbreviation value specified in region code : {regionId}| |80069|Invalid region code : {regionId}. Region code must start with country code : {countryId}-|
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