This request returns an array of column types that are supported by Data Manager.
https://www.mapquestapi.com/datamanager/v2/get-column-types
Response Formats | JSON, XML |
---|---|
Authentication | Yes (Requires Key) |
Rate Limited | Yes |
Request Parameter | Description | Required? |
---|---|---|
key String |
A unique key to authorize use of the API. | Yes |
outFormat String |
Specifies the format of the response. Must be one of the following, if supplied:
json
|
No |
Note: Address information is used to geocode the locations. However, if latitude and longitude column types are provided, no geocoding is done for the location.
* Restricted to only one instance of this column type per table.
GET
https://www.mapquestapi.com/datamanager/v2/get-column-types?key=KEY
{
"types": [
"Geography",
"String",
"Numeric",
"Integer",
"Boolean",
"Text",
"FullAddress",
"Street",
"City",
"StateProvince",
"PostalCode",
"County",
"Country",
"Latitude",
"Longitude"
],
"info": {
"statusCode": 0,
"copyright": {
"text": "© 2023 MapQuest, Inc.",
"imageUrl": "https://api.mqcdn.com/res/mqlogo.gif",
"imageAltText": "© 2023 MapQuest, Inc."
},
"messages": []
}
}
<response>
<info>
<statusCode>0</statusCode>
<messages/>
<copyright>
<imageUrl>https://api.mqcdn.com/res/mqlogo.gif</imageUrl>
<imageAltText>© 2023 MapQuest, Inc.</imageAltText>
<text>© 2023 MapQuest, Inc.</text>
</copyright>
</info>
<types>
<type>Geography</type>
<type>String</type>
<type>Numeric</type>
<type>Integer</type>
<type>Boolean</type>
<type>Text</type>
<type>FullAddress</type>
<type>Street</type>
<type>City</type>
<type>StateProvince</type>
<type>PostalCode</type>
<type>County</type>
<type>Country</type>
<type>Latitude</type>
<type>Longitude</type>
</types>
</response>