---
title: "Get Supported Markets"
slug: "get-supported-markets"
updated: 2024-10-27T01:17:30Z
published: 2024-10-27T01:17:30Z
canonical: "docs.cspcontrolcenter.com/get-supported-markets"
---

> ## Documentation Index
> Fetch the complete documentation index at: https://docs.cspcontrolcenter.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Supported Markets

Get the list of Supported Market detail that will used as parameters to create the Reseller Plan

## URL

https://contoso-prod-api.azurewebsites.net/api/common/supportedMarketList

## Request Headers

| Key | Value |
| --- | --- |
| Authorization | Bearer <access_token> |
| Content-Type | Application/json |

## Request body

The request doesn’t require any parameters / body

## Response body

An example response for the request to get supported market detail is as follows:

```json
{
    "OperationType": null,
    "Status": "Success",
    "RequestCorrelationID": "37c646e4-144b-410c-b504-f623ec9a07b5",
    "ErrorMessage": null,
    "ErrorDetail": null,
    "Data": [
        {
            "ID": 234,
            "Region": "United States",
            "MarketCountry": "United states Region",
            "MarketCode": "US",
            "Currency": "USD"
        }
    ]
}
```

### Here is the explanation for the properties in the response (JSON)

| Property | Description |
| --- | --- |
| OperationType | Can be ignored |
| Status | Indicates the status of the request. Possible values – Success / Error |
| RequestCorrelationID | Internal ID generated by C3 for correspondence for troubleshooting issues, if any. |
| ErrorMessage | Message in case the request runs into an error during processing |
| ErrorDetail | Additional detail related to the error in case there is an error while processing the request |
| Data | Contains a list of customer objects represented by the following attributes \| **Attribute** \| **Description** \| \| --- \| --- \| \| **ID** \| Record Serial number in API output \| \| **Region** \| Region associated with Supported country \| \| **MarketCountry** \| Name of country \| \| **MarketCode** \| Code of Market for the Plan \| \| **Currency** \| Currency supported in the country \| |
| **Attribute** | **Description** |
| **ID** | Record Serial number in API output |
| **Region** | Region associated with Supported country |
| **MarketCountry** | Name of country |
| **MarketCode** | Code of Market for the Plan |
| **Currency** | Currency supported in the country |
