GET api.ashx/v2/tourtips.{json|xml}
Request Parameters
Name | Type | Location | Description | Required | Default | Options |
---|---|---|---|---|---|---|
Keys | string | Query String | Comma-separated list of tour tip keys | Required |
Example Requests
Widget Javascript
jQuery.telligent.evolution.get({ url: jQuery.telligent.evolution.site.getBaseUrl() + 'api.ashx/v2/tourtips.json?Keys=keys', data: { 'Keys': 'keys' } }).then(function(response) { // use response });
Example Responses
JSON
{ "TourTips": [ { "User": null, "Key": null, "Read": false, "Warnings": [], "Errors": [] }, { "User": null, "Key": null, "Read": false, "Warnings": [], "Errors": [] } ], "Errors": [ "string", "string" ] }
XML
<?xml version="1.0" encoding="utf-16"?> <Response> <TourTips> <TourTip /> <TourTip /> </TourTips> <Errors> <Message>string</Message> <Message>string</Message> </Errors> </Response>
POST api.ashx/v2/tourtips.{json|xml}
Request Parameters
Name | Type | Location | Description | Required | Default | Options |
---|---|---|---|---|---|---|
Keys | string | Request Body | Comma-separated list of tour tip keys | Required |
Example Requests
Widget Javascript
jQuery.telligent.evolution.post({ url: jQuery.telligent.evolution.site.getBaseUrl() + 'api.ashx/v2/tourtips.json', data: { 'Keys': 'keys' } }).then(function(response) { // use response });
Example Responses
JSON
{ "TourTips": [ { "User": null, "Key": null, "Read": false, "Warnings": [], "Errors": [] }, { "User": null, "Key": null, "Read": false, "Warnings": [], "Errors": [] } ], "Errors": [ "string", "string" ] }
XML
<?xml version="1.0" encoding="utf-16"?> <Response> <TourTips> <TourTip /> <TourTip /> </TourTips> <Errors> <Message>string</Message> <Message>string</Message> </Errors> </Response>