getBillingCountries
get
/ccstore/v1/countries/billingCountries
Get Billing Countries. Lists all the billing countries.
Request
Supported Media Types
- application/json
Query Parameters
- pSortOrder
-
Type:
string
Specify the sort order of how the billing countries should be returned. Valid values are asc and desc. The default value it asc
Response
Supported Media Types
- application/json
200 Response
Following model is returned when operation succeeds.
Body
Root Schema : getBillingCountries_response
- items
-
Type:
array
itemsAdditional Properties Allowed:The list of all billing countries.
Nested Schema : items
Nested Schema : items
Type:
object
Nested Schema : country
Type:
object
The country repository id, display name and country code.
- countryCode
-
Type:
string
ISO 3166-1 two letter country code. - displayName
-
Type:
string
Localized country name. - repositoryId
-
Type:
string
The ID of the country item.
Nested Schema : regions
Nested Schema : items
Type:
object
- abbreviation
-
Type:
string
The region code in abbreviated form. Usually a 2 character ISO code - displayName
-
Type:
string
Localized region name. - regionCode
-
Type:
string
The region code (4 character ISO code). - repositoryId
-
Type:
string
The ID of the region item.
Example application/json
[
{
"country":{
"countryCode":"CA",
"displayName":"Canada",
"repositoryId":"CA"
},
"regions":[
{
"regionCode":"CA-NB",
"displayName":"New Brunswick",
"repositoryId":"CA-NB",
"abbreviation":"NB"
},
{
"regionCode":"CA-PE",
"displayName":"Prince Edward Island",
"repositoryId":"CA-PE",
"abbreviation":"PE"
},
{
"regionCode":"CA-QC",
"displayName":"Quebec",
"repositoryId":"CA-QC",
"abbreviation":"QC"
},
{
"regionCode":"CA-BC",
"displayName":"British Columbia",
"repositoryId":"CA-BC",
"abbreviation":"BC"
},
{
"regionCode":"CA-MB",
"displayName":"Manitoba",
"repositoryId":"CA-MB",
"abbreviation":"MB"
},
{
"regionCode":"CA-YT",
"displayName":"Yukon",
"repositoryId":"CA-YT",
"abbreviation":"YT"
},
{
"regionCode":"CA-NT",
"displayName":"Northwest Territories",
"repositoryId":"CA-NT",
"abbreviation":"NT"
},
{
"regionCode":"CA-NS",
"displayName":"Nova Scotia",
"repositoryId":"CA-NS",
"abbreviation":"NS"
},
{
"regionCode":"CA-NU",
"displayName":"Nunavut",
"repositoryId":"CA-NU",
"abbreviation":"NU"
},
{
"regionCode":"CA-AB",
"displayName":"Alberta",
"repositoryId":"CA-AB",
"abbreviation":"AB"
},
{
"regionCode":"CA-SK",
"displayName":"Saskatchewan",
"repositoryId":"CA-SK",
"abbreviation":"SK"
},
{
"regionCode":"CA-NL",
"displayName":"Newfoundland and Labrador",
"repositoryId":"CA-NL",
"abbreviation":"NL"
},
{
"regionCode":"CA-ON",
"displayName":"Ontario",
"repositoryId":"CA-ON",
"abbreviation":"ON"
}
],
"repositoryId":"CA"
}
]
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|
|------------------|------------------|
|80032|If error occurs when retrieving billing countries.|
Body
Root Schema : errorModel
Type:
object
- devMessage
-
Type:
string
An optional non-localized message containing technical information for developers - errorCode
-
Type:
string
The numerical code identifying the error - errors
-
Type:
array
errorsAdditional Properties Allowed:An optional list of errors if multiple errors were encountered - message
-
Type:
string
The localized message describing the error - moreInfo
-
Type:
string
An optional non-localized message with more information - o:errorPath
-
Type:
string
An optional machine readable description of where the error occurred - status
-
Type:
string
The HTTP status code - type
-
Type:
string
The URI to the HTTP state code definition
Nested Schema : errors
Nested Schema : items
Type:
object
- devMessage
-
Type:
string
An optional non-localized message containing technical information for developers - errorCode
-
Type:
string
The numerical code identifying the error - message
-
Type:
string
The localized message describing the error - moreInfo
-
Type:
string
An optional non-localized message with more information - o:errorPath
-
Type:
string
An optional machine readable description of where the error occurred - status
-
Type:
string
The HTTP status code
Examples
Sample Response Payload returned by endpoint:
[{ "country": { "countryCode": "CA", "displayName": "Canada", "repositoryId": "CA" }, "regions": [ { "regionCode": "CA-NB", "displayName": "New Brunswick", "repositoryId": "CA-NB", "abbreviation": "NB" }, { "regionCode": "CA-PE", "displayName": "Prince Edward Island", "repositoryId": "CA-PE", "abbreviation": "PE" }, { "regionCode": "CA-QC", "displayName": "Quebec", "repositoryId": "CA-QC", "abbreviation": "QC" }, { "regionCode": "CA-BC", "displayName": "British Columbia", "repositoryId": "CA-BC", "abbreviation": "BC" }, { "regionCode": "CA-MB", "displayName": "Manitoba", "repositoryId": "CA-MB", "abbreviation": "MB" }, { "regionCode": "CA-YT", "displayName": "Yukon", "repositoryId": "CA-YT", "abbreviation": "YT" }, { "regionCode": "CA-NT", "displayName": "Northwest Territories", "repositoryId": "CA-NT", "abbreviation": "NT" }, { "regionCode": "CA-NS", "displayName": "Nova Scotia", "repositoryId": "CA-NS", "abbreviation": "NS" }, { "regionCode": "CA-NU", "displayName": "Nunavut", "repositoryId": "CA-NU", "abbreviation": "NU" }, { "regionCode": "CA-AB", "displayName": "Alberta", "repositoryId": "CA-AB", "abbreviation": "AB" }, { "regionCode": "CA-SK", "displayName": "Saskatchewan", "repositoryId": "CA-SK", "abbreviation": "SK" }, { "regionCode": "CA-NL", "displayName": "Newfoundland and Labrador", "repositoryId": "CA-NL", "abbreviation": "NL" }, { "regionCode": "CA-ON", "displayName": "Ontario", "repositoryId": "CA-ON", "abbreviation": "ON" } ], "repositoryId": "CA" }]