This request allows the user to edit the name of their Data Manager table.
https://www.mapquestapi.com/datamanager/v2/edit-table-name
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 |
inFormat String |
Specifies the format of the json/xml parameter. Must be one of the following, if
supplied:
json
|
No |
outFormat String |
Specifies the format of the response. Must be one of the following, if supplied:
json
|
No |
Name | Description | Required? |
---|---|---|
clientId String |
This is the ClientID associated with the API Key. |
Yes |
password String |
This is the registry password associated with the API Key. | Yes |
tableName String |
This is the complete name of the table. Table names for legacy users must be prefixed with mqap.[CLIENT_ID]_ Table names for new users must be prefixed with mqap.[APPLICATION_KEY]_
|
Yes |
newTableName String |
This is the complete updated name of the table. Table names for legacy users must be prefixed with mqap.[CLIENT_ID]_ Table names for new users must be prefixed with mqap.[APPLICATION_KEY]_
|
Yes |
POST
https://www.mapquestapi.com/datamanager/v2/edit-table-name?key=KEY&inFormat=json
{
"clientId": "CLIENT_ID",
"password": "REGISTRY_PASSWORD",
"tableName": "mqap.TABLENAME",
"newTableName": "mqap.NEWTABLENAME"
}
<datamanager>
<clientId>CLIENT_ID</clientId>
<password>REGISTRY_PASSWORD</password>
<tableName>mqap.TABLENAME</tableName>
<newTableName>mqap.NEWTABLENAME</newTableName>
</datamanager>
{
"newTableName": "mqap.NEWTABLENAME"
}
<datamanager>
<newTableName>mqap.NEWTABLENAME</newTableName>
</datamanager>