Location

Get Locations v2.0

GET https://yoursite.demanddriventech.com/odata/v2/location

This endpoint allows you to get all locations for the current dataset. This endpoint does not currently accept parameters.

{
    "@odata.context": "https://yoursite.demanddriventech.com/odata/v2/$metadata#location",
    "value": [
        {
            "DataSetId": 1,
            "Id": 101,
            "Name": "Texas",
            "TimeZoneId": "UTC",
            "CountryId": 31,
            "IsActive": true,
            "CountryDisplayName": "United States",
            "TwoLetterISORegionName": "US",
            "ThreeLetterISOCurrencyCode": "USD",
            "EnglishCurrencyName": "United States dollar"
        }
    ]
}

Location Fields

Field Name

Type

DataSetId

int

Id

int

Name

text

Description

text

Address

text

TimeZoneId

text

CountryId

int?

IsActive

bool

CountryDisplayName

text

TwoLetterISORegionName

text

ThreeLetterISOCurrencyCode

text

EnglishCurrencyName

text

Last updated