Custom Location Service API

Size: px
Start display at page:

Download "Custom Location Service API"

Transcription

1 Custom Location Service API Developer's Guide Version 1.0.0

2 Custom Location Service API Developer's Guide 2 Contents Contents Legal Notices...3 Document Information... 4 Chapter 1: Overview... 5 What is the Custom Location Service API?... 6 Why use the Custom Location Service API?...6 Chapter 2: User Guide... 7 Acquiring Credentials...8 Constructing a Request... 8 Examples... 9 Atrribute Search...9 Bounding Box Search...11 Corridor Search using Coordinates Corridor Search using RouteId Proximity Search Service Support Chapter 3: API Reference...26 Location Management...27 XML File Location Import Location Search Resources...28 Request Parameter Data Types Response Data Types Errors...41

3 Custom Location Service API Developer's Guide 3 Legal Notices Legal Notices 2013 HERE. All rights reserved. This material, including documentation and any related computer programs, is protected by copyright controlled by HERE. All rights are reserved. Copying, including reproducing, storing, adapting or translating, any or all of this material requires the prior written consent of HERE. This material also contains confidential information, which may not be disclosed to others without the prior written consent of HERE. Trademark Acknowledgements HERE and Nokia are trademarks or registered trademarks of Nokia Corporation in the United States and other countries. Other trade names are trademarks or registered trademarks of their owners. Disclaimer This content is provided "as-is" and without warranties of any kind, either express or implied, including, but not limited to, the implied warranties of merchantability, fitness for a particular purpose, satisfactory quality and non-infringement. Nokia does not warrant that the content is error free and Nokia does not warrant or make any representations regarding the quality, correctness, accuracy, or reliability of the content. you should therefore verify any information contained in the content before acting on it. To the furthest extent permitted by law, under no circumstances, including without limitation Nokia's negligence, shall Nokia be liable for any damages, including, without limitation, direct, special, indirect, punitive, consequential, exemplary and/ or incidental damages that result from the use or application of this content, even if Nokia or an authorized representative has been advised of the possibility of such damages.

4 Custom Location Service API Developer's Guide 4 Document Information Document Information Product Name: Custom Location Service API Version: Version Document Name: Id: Status: Date: Custom Location Service API Developer's Guide 5f370a FINAL 2013-Sep-25, 10:42 (GMT)

5 Custom Location Service API Developer's Guide 5 Overview Chapter 1 Overview Topics: What is the Custom Location Service API? Why use the Custom Location Service API? This document introduces the Custom Location Service API and: explains key concepts provides examples documents resources and query parameters documents response structures and data types

6 Custom Location Service API Developer's Guide 6 Overview What is the Custom Location Service API? HERE Custom Location Service API is a service that allows storage and retrieval of user-defined locations. Storing of locations can either be done by uploading a CSV file via an administration website or by using HTTP POST to upload an XML file via the service. Retrieval of locations is done by making calls to a RESTful API. In this document we discuss using the API. To learn more on how to upload locations using the administration website, please refer the Custom Location Service API User Guide. Why use the Custom Location Service API? Custom Location Service API provides solutions for the following high level use cases: Store a user-defined set of locations, for use with other HERE APIs. Perform a proximity search for user-defined points of interest around a specified location. Retrieve a set of user-defined points of interest within a specified bounding box. Find all user-defined locations within an isoline route result. Find all user-defined locations within a certain radius of a defined route, using its routeid.

7 Custom Location Service API Developer's Guide 7 User Guide Chapter 2 User Guide Topics: Acquiring Credentials Constructing a Request Examples Service Support The articles in this section provide a guide to using the Custom Location Service API.

8 Custom Location Service API Developer's Guide 8 User Guide Acquiring Credentials All users of HERE APIs must obtain authentication and authorization credentials and provide them as values for the parameters app_id and app_code. The credentials are assigned per application. To obtain the credentials for an application, please visit for more details. Constructing a Request A request to the Custom Location Service API includes the basic elements shown in the following table and, in addition, it may contain resource-specific parameters or data. Table 1: Basic request elements Element Value/Example Description Base URL Production environment only Staging environment only [1] Path /v1/ Resource file/import search POST only, submit data in the body of the request GET only, specify request details via query parameters Application Code &app_code=ajknxv84fjrb0kihaws0tg Substitute your own unique app_code Application Id &app_id=demoappid gal Substitute your own unique app_id [1] The staging environment allows you to test your software against a newer version of the service before HERE brings that version into production. Note that the same application id can be used in both environments, but staging may require a dedicated application code. If this is the case, please contact us as described under Service Support on page 25. The staging environment is not intended for production use and HERE SLAs do not apply for this environment.

9 Custom Location Service API Developer's Guide 9 User Guide Here is an example of a search request, which uses the HTTP GET method: &app_code=ajknxv84fjrb0kihaws0tg &coord=50.112, &layerid=27 &radius=50000 Examples This section provides examples of requests along with the responding results. Search on Custom POIs on an Attribute Custom Location Service API allows you to perform an attribute search of user-defined points of interest. In following example, we search for locations in the "Nokia Stores DE" layer that have the word "allee" in their street name and "partner" in their name using the query parameter. Request &app_code=ajknxv84fjrb0kihaws0tg &layerid=30 &query=[like]/street/allee/[and][like]/name1/partner Response "layerid": 30, "layername": "Nokia Stores DE", "locations": [ "city": "Forchheim", "coordinate": "latitude": , "longitude": "country": "DEU", "customattributes": [], "customerlocationid": "226031", "fax": " ", "name1": "O2 Partner Shop Forchheim",

10 Custom Location Service API Developer's Guide 10 User Guide "phone": " ", "postalcode": "91301", "routecoordinate": "latitude": , "longitude": "street": "Hornschuchallee 26" "city": "Hamburg", "coordinate": "latitude": , "longitude": "country": "DEU", "customattributes": [], "customerlocationid": "227582", "fax": " ", "name1": "E-Plus Partnershop", "phone": " ", "postalcode": "20146", "routecoordinate": "latitude": , "longitude": "street": "Grindelallee 40" "city": "Norderstedt", "coordinate": "latitude": , "longitude": "country": "DEU", "customattributes": [], "customerlocationid": "225851", "fax": " ", "name1": "O2 Partner Shop", "phone": " ", "postalcode": "22850", "routecoordinate": "latitude": , "longitude": "street": "Berliner Allee 38-44" ], "message": "OK", "status": "200 OK"

11 Custom Location Service API Developer's Guide 11 User Guide Search on Custom POIs Within a Defined Area Using a bounding box search, you can select user-defined points of interest that are within a specified area. Compared to a proximity search, which searches within a radius of a specific location, a bounding box search allows you to exactly specify a rectangular area in which you would like to search for user-defined POIs. In this example, we search for all locations in the "Nokia Stores DE" layer that are located in an area defined by the following conditions: POI should be located south of Friedrichstraße train station in Berlin. POI should be located north of Französische Straße metro station in Berlin. POI should be located east of the Brandenburger Tor in Berlin. POI should be located west of the Deutsches Historisches Museum in Berlin. The conditions listed above describe the area shown in the image below: Figure 1: Search Area in Berlin We can retrieve the latitude and longitude values for the area shown above by using the mouse geo-locator feature (enabled in the Preferences section) of here.com. For this area, we identify the latitude and longitude values for the top-left ( , ) and bottom-right ( , ) coordinates of the bounding box described. Request &app_code=ajknxv84fjrb0kihaws0tg

12 Custom Location Service API Developer's Guide 12 User Guide &bbox= , ; , &layerid=30 Response "bblocations": [ "city": "Berlin-Mitte", "coordinate": "latitude": , "longitude": "country": "DEU", "customattributes": [], "customerlocationid": "227242", "fax": "(null)", "name1": "_dug Berlin-Mitte Friedrichstr.", "phone": "(null)", "postalcode": "10117", "routecoordinate": "latitude": , "longitude": "street": "Friedrichstr " ], "layerid": 30, "layername": "Nokia Stores DE", "message": "OK", "status": "200 OK" Search Custom POIs along a Route This example describes a route corridor search, which requests custom POIs within a given distance of a route. First, we request a route from Friedrichstraße train station to Französische Straße metro station, both in Berlin, using the HERE Routing API. Using response data from that request, we create an array of latitudes and longitudes. Finally, we make a request to the Custom Location Service API

13 Custom Location Service API Developer's Guide 13 User Guide to search for all custom POIs in the "Nokia Stores DE" layer, using array and a radius value to define a shape search area. Figure 2: Berlin Route Used in Custom POI Search Routing API Request First, we need to calculate the route, using the Routing API. We will use the latitude and longitude values contained in the response data, along with a defined radius, to set the search area for our Custom Location Service API request. &app_code=ajknxv84fjrb0kihaws0tg

14 Custom Location Service API Developer's Guide 14 User Guide &waypoint0=geo! , &waypoint1=geo! , &mode=shortest;car Routing API Response "Response": "MetaInfo":... "Route":[ "RouteId":"REM0iQIAAADG-ZtQiEJKQBnlmZf DxipAAAAA4IlCSkAAAABAw8YqQAAAAAAAAPB _AAAAAAAA8H850yIicbVOXI4HKQFdmfBL _RyrAAEAAACQBykBAQAAAAAdqwABAAAAAADA _weaaaaaamd_uw2d8a_k", "Waypoint":[ "LinkId":" ", "MappedPosition": "Latitude": , "Longitude": "OriginalPosition": "Latitude": , "Longitude": "Type":"stopOver" "LinkId":" ", "MappedPosition": "Latitude": , "Longitude": "OriginalPosition": "Latitude": , "Longitude": "Type":"stopOver" ], "Mode": "Type":"shortest", "TransportModes":[ "car"

15 Custom Location Service API Developer's Guide 15 User Guide ] ],... "Leg":[... ], "Summary": "Distance":571, "TrafficTime":69, "BaseTime":69, "Flags":[ ] Although we use HTTP GET in this example, we recommend HTTP POST when submitting a large array of route coordinates. The HTTP protocol does not place any a priori limit on the length of a URL, however some browsers can only handle URLs up to 2000 characters. Custom Location Service API Request using Route Leg Lat-Long Values &app_code=ajknxv84fjrb0kihaws0tg &route= , , , , , , , , , &radius=100 &layerid=30 Custom Location Service API Response "corridorlocations": [ "city": "Frankfurt", "coordinate": "latitude": , "longitude": "country": "DEU", "customattributes": [], "customerlocationid": "227364", "distance": ,

16 Custom Location Service API Developer's Guide 16 User Guide "fax": " ", "name1": "Handys007", "phone": " ", "postalcode": "60311", "routecoordinate": "latitude": , "longitude": "street": "Hasengasse 2" "city": "Remscheid", "coordinate": "latitude": , "longitude": "country": "DEU", "customattributes": [], "customerlocationid": "226542", "distance": , "fax": " ", "name1": "_dug Remscheid", "phone": " ", "postalcode": "42853", "routecoordinate": "latitude": , "longitude": "street": "Theodor-Heuss-Platz 7 (Allee-Center)" ], "layerid": 30, "message": "OK", "status": "200 OK"

17 Custom Location Service API Developer's Guide 17 User Guide Figure 3: Berlin Map Display, Including Route and Custom POIs Search Custom POIs using RouteId This example describes a search of custom POIs within a given distance from a previously calculated route. The search uses a predetermined routeid from the HERE Routing API response. This search requests all locations in the "Nokia Stores DE" layer that are along a route from Friedrichstraße train

18 Custom Location Service API Developer's Guide 18 User Guide station (latitude: , longitude: ) to Französische Straße metro station (latitude: , longitude: ), both located in Berlin. Figure 4: Berlin Route Used in Custom POI Search HERE Routing API Request First, we need to calculate the route, using the HERE Routing API. We will use the routeid from that request, along with a defined radius to set the search area for our Custom Location Service API request. &app_code=ajknxv84fjrb0kihaws0tg

19 Custom Location Service API Developer's Guide 19 User Guide &waypoint0=geo! , &waypoint1=geo! , &mode=shortest;car HERE Routing API Response "Response": "MetaInfo":.. "Route":[ "RouteId":... "Waypoint":[ "LinkId":" ", "MappedPosition": "Latitude": , "Longitude": "OriginalPosition": "Latitude": , "Longitude": "Type":"stopOver" "LinkId":" ", "MappedPosition": "Latitude": , "Longitude": "OriginalPosition": "Latitude": , "Longitude": "Type":"stopOver" ], "Mode": "Type":"shortest", "TransportModes":[ "car" ],...

20 Custom Location Service API Developer's Guide 20 User Guide "Leg":[ "Start": "LinkId":" ", "MappedPosition": "Latitude": , "Longitude": "OriginalPosition": "Latitude": , "Longitude": "Type":"stopOver" "End": "LinkId":" ", "MappedPosition": "Latitude": , "Longitude": "OriginalPosition": "Latitude": , "Longitude": "Type":"stopOver" "Length":571, "TravelTime":69.1, "Maneuver":[ "_type":"privatetransportmaneuvertype", "Position": "Latitude": , "Longitude": "Instruction": "Head toward Friedrichstraße on Georgenstrasse. Go for 30 feet.", "TravelTime":1.1, "Length":9, "id":"m1" "_type":"privatetransportmaneuvertype", "Position": "Latitude": ,

21 Custom Location Service API Developer's Guide 21 User Guide ] ] ], "Summary": "Distance":571, "TrafficTime":69, "BaseTime":69, "Flags":[ ] "Longitude": "Instruction": "Turn right onto Friedrichstraße. Go for 0.3 miles.", "TravelTime":68, "Length":562, "id":"m2" "_type":"privatetransportmaneuvertype", "Position": "Latitude": , "Longitude": "Instruction": "Arrive at Friedrichstraße. The trip takes 0.4 miles and 1 min.", "TravelTime":0, "Length":0, "id":"m3" Custom Location Service API Request using RouteId &app_code=ajknxv84fjrb0kihaws0tg &routeid=rem0iqiaaadg-ztqiejkqbnlmz fdxipaaaaa4ilcskaaaabaw8yqqaaaaaaaapb _AAAAAAAA8H850yIicbVOXI4HKQFdmfBL_RyrAAEAAACQ BykBAQAAAAAdqwABAAAAAADA_wEAAAAAAMD_UW2D8A_K &radius=100 &layerid=30

22 Custom Location Service API Developer's Guide 22 User Guide Custom Location Service API Response "corridorlocations": [ "city": "Frankfurt", "coordinate": "latitude": , "longitude": "country": "DEU", "customattributes": [], "customerlocationid": "227364", "distance": , "fax": " ", "name1": "Handys007", "phone": " ", "postalcode": "60311", "routecoordinate": "latitude": , "longitude": "street": "Hasengasse 2" "city": "Remscheid", "coordinate": "latitude": , "longitude": "country": "DEU", "customattributes": [], "customerlocationid": "226542", "distance": , "fax": " ", "name1": "_dug Remscheid", "phone": " ", "postalcode": "42853", "routecoordinate": "latitude": , "longitude": "street": "Theodor-Heuss-Platz 7 (Allee-Center)" ], "layerid": 30, "message": "OK", "status": "200 OK"

23 Custom Location Service API Developer's Guide 23 User Guide Figure 5: Berlin Map Display, Including Route and Custom POIs Proximity Search on Custom POIs The Custom Location Service API allows you to perform a proximity search to return a list of custom POIs that fall within a specified radius of a certain location. In this example, we search for all locations in the "Nokia Stores DE" layer that exist within a 0.5 kilometer radius of Franfurt Central Station ( , ).

24 Custom Location Service API Developer's Guide 24 User Guide Proximity Request &app_code=ajknxv84fjrb0kihaws0tg &coord= , &radius=500 &layerid=30 Custom Location Service API Response "layerid": 30, "layername": "Nokia Stores DE", "message": "OK", "proximitylocations": [ "city": "Suhl", "coordinate": "latitude": , "longitude": "country": "DEU", "customattributes": [], "customerlocationid": "226880", "distance": 53.1, "fax": "(null)", "name1": "_dug Suhl", "phone": "(null)", "postalcode": "98527", "routecoordinate": "latitude": , "longitude": "street": "Steinweg 12" "city": "Frankfurt", "coordinate": "latitude": , "longitude": "country": "DEU", "customattributes": [], "customerlocationid": "226801", "distance": 65.3, "fax": " ", "name1": "The Phone House", "phone": " ", "postalcode": "60313", "routecoordinate":

25 Custom Location Service API Developer's Guide 25 User Guide "latitude": , "longitude": "street": "Steinweg 1" "city": "Frankfurt", "coordinate": "latitude": , "longitude": "country": "DEU", "customattributes": [], "customerlocationid": "224632", "distance": 245.8, "fax": " ", "name1": "SMS Michel Communication GmbH", "phone": " ", "postalcode": "60313", "routecoordinate": "latitude": , "longitude": "street": "Zeilgalerie , Shop 43A" ], "status": "200 OK" Service Support If you need assistance in using the API, contact your Nokia representative or Technical Customer Support via at

26 Custom Location Service API Developer's Guide 26 API Reference Chapter 3 API Reference Topics: Location Management Location Search Errors This section provides descriptions of the resources, parameters, return types and error codes of the HERE Custom Location Service API.

27 Custom Location Service API Developer's Guide 27 API Reference Location Management This section provide an explanation of how to import location data. XML File Location Import Resource URI /file/import/xml XSD Schemas Name Request Response URL The service accepts an XML file by HTTP POST. In order to be able to import new locations data: A valid user credentials must be available The layer id used must exist in the database Query Parameters Parameters Required? Description xmlfile Yes A POSTED multipart/form-data XML file. Example XML File Below is an example of an import XML file: <?xml version="1.0"?> <request> <authentication> <username>your_username</username> <password>your_password</password> <app_id>your_app_id</app_id> <app_code>your_app_code</app_code> </authentication> <information> <file_date> </file_date> <file_time>13:11:51</file_time>

28 Custom Location Service API Developer's Guide 28 API Reference <UTC>+1</UTC> </information> <synchronize layerid="30" geocode="changed" overwriteaddress="false"> <location> <customer_location_id>de12345</customer_location_id> <address> <city>berlin</city> <street>invalidenstrasse 116</street> <postalcode>10115</postalcode> <country>deu</country> </address> <name1>nokia House 1</name1> <phone> </phone> <fax/> <description>mo. - Fr.: #08:00-19:00 Sat., Sun: closed</description> <iconurl/> <url/> <custom_fields> <field name="division">here</field> </custom_fields> </location> </synchronize> </request> Location Search Location Searches are interfaces which fetch locations to be displayed with an integrated mapping application. Location Searches are also the publicly facing interface for Custom Location Service API. This section provides descriptions of the resources (along with parameters and examples of those resources) to make such searches. Search Resources There are five types of Search Resources: Attribute, Bounding Box, Proximity, Corridor Using RouteId, Corridor Using Coordinates. Attribute Search Search for user-defined locations on their attributes only, without any geographical restrictions. Resource URI /search/attribute

29 Custom Location Service API Developer's Guide 29 API Reference Resource Parameters Parameters Required? Description app_id Yes A URL-safe encoded string obtained during the application registration. See Acquiring Credentials on page 8 for information on getting credentials. app_code Yes A URL-safe encoded string obtained during the application registration. See Acquiring Credentials on page 8 for information on getting credentials. customattributes[] No Optional set of custom location attribute fields to further filter the results. Every parameter value is to contain a field value pair (pipe delimited). For example: customattributes[]= FuelType Diesel&customAttributes[] =Category GasStation jsoncallback No Specifies the name of a user-defined function used to wrap the JSON response. layerid Yes Provide layer Id to target the search to a specific layer. limit No The maximum amount of locations returned in the response. Default is 100. Maximum allowed is 300. query No See QueryType Response Example Below is an example of a Attribute Search response: "layerid": 30, "layername": "Nokia Stores DE", "locations": [ "city": "Berlin", "coordinate": "latitude": , "longitude": "country": "DEU", "customattributes": [], "customerlocationid": "224807", "fax": " ", "name1": "Fera Funk GmbH", "phone": " ", "postalcode": "12435", "routecoordinate": "latitude": , "longitude":

30 Custom Location Service API Developer's Guide 30 API Reference "street": "Neue Krugallee 39"... ], "message": "OK", "status": "200 OK" Proximity Search Search for user-defined locations that are within a given radius around a center. Resource URI /search/proximity Resource Parameters Parameters Required? Description app_id Yes A URL-safe encoded string obtained during the application registration. See Acquiring Credentials on page 8 for information on getting credentials. app_code Yes A URL-safe encoded string obtained during the application registration. See Acquiring Credentials on page 8 for information on getting credentials. customattributes[] No Optional set of custom location attribute fields to further filter the results. Every parameter value is to contain a field value pair (pipe delimited). For example: coord Yes Is the search coordinate. customattributes[]= FuelType Diesel&customAttributes[] =Category GasStation Latitude, Longitude in decimal degrees: Must satisfy: -90 value 90 Unit: decimal degrees Reference System: WGS 84 Precision: 7 positions after decimal point, additional positions are ignored Example: coord=47.731, jsoncallback No Specifies the name of a user-defined function used to wrap the JSON response.

31 Custom Location Service API Developer's Guide 31 API Reference Parameters Required? Description layerid Yes Provide layer Id to target the search to a specific layer. limit No The maximum amount of locations returned in the response. Default is 100. Maximum allowed is 300. query No See QueryType radius Yes The search radius in meters. Response Example Below is an example of a Proximity Search response: "layerid": 30, "layername": "Nokia Stores DE", "message": "OK", "proximitylocations": [ "city": "Frankfurt", "coordinate": "latitude": , "longitude": "country": "DEU", "customattributes": [], "customerlocationid": "227364", "distance": 80.2, "fax": " ", "name1": "Handys007", "phone": " ", "postalcode": "60311", "routecoordinate": "latitude": , "longitude": "street": "Hasengasse 2"... "city": "Mainburg", "coordinate": "latitude": , "longitude": "country": "DEU", "customattributes": [], "customerlocationid": "225300", "distance": , "fax": " ", "name1": "Bachner Elektrohandel GmbH", "phone": " ", "postalcode": "84048", "routecoordinate": "latitude": , "longitude": "street": "Bahnhofstr. 15"

32 Custom Location Service API Developer's Guide 32 API Reference ], "status": "200 OK" Corridor (Using Coordinates) Search Search for user-defined POIs within a distance along a route specified by range of coordinates. Resource URI /search/corridor Corridor search resource supports both HTTP GET and HTTP POST, however we recommend HTTP POST when you have a large number of values for the route parameter. Although HTTP protocol does not place any a priori limit on the length of a URL some browsers can only handle URLs upto 2000 characters. Resource Parameters Parameters Required? Description app_id Yes A URL-safe encoded string obtained during the application registration. See Acquiring Credentials on page 8 for information on getting credentials. app_code Yes A URL-safe encoded string obtained during the application registration. See Acquiring Credentials on page 8 for information on getting credentials. customattributes[] No Optional set of custom location attribute fields to further filter the results. Every parameter value is to contain a field value pair (pipe delimited). For example: customattributes[]= FuelType Diesel&customAttributes[] =Category GasStation jsoncallback No Specifies the name of a user-defined function used to wrap the JSON response. layerid Yes Provide layer Id to target the search to a specific layer. limit No The maximum amount of locations returned in the response. Default is 100. Maximum allowed is 300. query No See QueryType radius Yes The search radius in meters. For example, half the corridor width.

33 Custom Location Service API Developer's Guide 33 API Reference Parameters Required? Description route Yes The coordinates of the polyline used as a corridor center line. For example: Latitude, longitude, latitude, longitude... Response Example Below is an example of Corridor (Using Coordinates) Search response: "corridorlocations": [ "city": "Remscheid", "coordinate": "latitude": , "longitude": "country": "DEU", "customattributes": [], "customerlocationid": "226542", "distance": , "fax": " ", "name1": "_dug Remscheid", "phone": " ", "postalcode": "42853", "routecoordinate": "latitude": , "longitude": "street": "Theodor-Heuss-Platz 7 (Allee-Center)" ], "layerid": 30, "message": "OK", "status": "200 OK" Corridor (Using RouteId) Search Search for user-defined POIs within a distance along a route specified by routeid. Resource URI /search/route/corridor

34 Custom Location Service API Developer's Guide 34 API Reference Resource Parameters Parameters Required? Description app_id Yes A URL-safe encoded string obtained during the application registration. See Acquiring Credentials on page 8 for information on getting credentials. app_code Yes A URL-safe encoded string obtained during the application registration. See Acquiring Credentials on page 8 for information on getting credentials. customattributes[] No Optional set of custom location attribute fields to further filter the results. Every parameter value is to contain a field value pair (pipe delimited). For example: customattributes[]= FuelType Diesel&customAttributes[] =Category GasStation jsoncallback No Specifies the name of a user-defined function used to wrap the JSON response. layerid Yes Provide layer Id to target the search to a specific layer. limit No The maximum amount of locations returned in the response. Default is 100. Maximum allowed is 300. query No See QueryType routeid Yes The routeid given back in the response of a Routing API. radius Yes The search radius in meters. For example, half the corridor width. Response Example Below is an example of a Corridor (Using RouteId) Search response: "corridorlocations": [ "city": "Remscheid", "coordinate": "latitude": , "longitude": "country": "DEU", "customattributes": [], "customerlocationid": "226542", "distance": , "fax": " ", "name1": "_dug Remscheid", "phone": " ", "postalcode": "42853", "routecoordinate":

35 Custom Location Service API Developer's Guide 35 API Reference "latitude": , "longitude": "street": "Theodor-Heuss-Platz 7 (Allee-Center)" ], "layerid": 30, "message": "OK", "status": "200 OK" Bounding Box Search Search for user-defined POIs within a specified rectangular geographic area. Resource URI /search/bbox Resource Parameters Parameters Required? Description app_id Yes A URL-safe encoded string obtained during the application registration. See Acquiring Credentials on page 8 for information on getting credentials. app_code Yes A URL-safe encoded string obtained during the application registration. See Acquiring Credentials on page 8 for information on getting credentials. bbox Yes The bounding box upper left, and lower right coordinates. In the format: latitude, longitude; latitude, longitude bbox=37.8,-122.1;37.2, WGS-84 decimal degrees customattributes[] No Optional set of custom location attribute fields to further filter the results. Every parameter value is to contain a field value pair (pipe delimited). For example: customattributes[]= FuelType Diesel&customAttributes[] =Category GasStation jsoncallback No Specifies the name of a user-defined function used to wrap the JSON response. layerid Yes Provide layer Id to target the search to a specific layer. limit No The maximum amount of locations returned in the response. Default is 100.

36 Custom Location Service API Developer's Guide 36 API Reference Parameters Required? Description Maximum allowed is 300. query No See QueryType Response Example Below is an example of a Bounding Box Search response: "bblocations": [ "city": "Frankfurt", "coordinate": "latitude": , "longitude": "country": "DEU", "customattributes": [], "customerlocationid": "227470", "fax": "(null)", "name1": "O2 Shop Frankfurt", "phone": "(null)", "postalcode": "60329", "routecoordinate": "latitude": , "longitude": "street": "Kaiserstr "... ], "layerid": 30, "layername": "Nokia Stores DE", "message": "OK", "status": "200 OK" Request Parameter Data Types QueryType Using the query parameter one can tell the Custom Location Service API to only return search results that fit a given condition or set of conditions. Note that all filtering conditions are applied as case insensitive. The syntax is: <Condition>/<attribute name>/<value> Multiple attribute conditions may be added:

37 Custom Location Service API Developer's Guide 37 API Reference <Condition>/<attribute name>/<value>/<operator>/<condition2>/<attribute name2>/<value2> Conditions Condition [x] Description Exact match [>] Greater than [<] Less than [<=] Less or equal [like] [like*] [*like] [null] [not] Handled as: like %value% Handled as: like value% Handled as: like %value Value of attribute is null Value of attribute is not equal to Operators Operator [AND] [OR] Description Logical AND between given conditions Logical OR between given conditions Attributes The following attributes can be used within the query parameter: name1 name2 name3 customerlocationid customerid displaylat (latitude in coordinate attribute) displaylon (longitude in coordinate attribute) navlat (longitude in routecoordinate attribute) navlon (longitude in routecoordinate attribute) description housenumber street

38 Custom Location Service API Developer's Guide 38 API Reference city state postalcode country county countryname phone fax Examples Below is an example of a querytype searching for stores in layer Nokia Stores that are in Berlin which have the word "phone" in their name: &app_code=ajknxv84fjrb0kihaws0tg &coord=52.51,13.4 &radius=20000 &layerid=30 &query=[like]/name1/phone/ Below is an example of a querytype searching for stores in layer Nokia Stores that are in Berlin which have as postal code either or 10178: &app_code=ajknxv84fjrb0kihaws0tg &coord=52.51,13.4 &radius=20000 &layerid=30 &query=[x]/postalcode/10117/[or]/[x]/postalcode/10178/ Response Data Types Articles in this section provide a comprehensive reference to Response Data Types used throughout the Custom Location Service API. LocationType The LocationType specifies the attributes of a POI.

39 Custom Location Service API Developer's Guide 39 API Reference Attributes Attribute Type Description coordinate GeoCoordinateType Geo-location of the location. city String Densely populated municipality. country String Name of the state as an ISO 3166-alpha-3 country code. county String Second subdivision level below the country For example: USA: County Germany: Kreis customerattributes Array Array of string for custom attributes. customerlocationid String Unique identifier set by customer for the location. description String The description of the location. distance Number The address of the location. String The address of the location. fax String The fax number of the location. housenumber String The house number of the location. name1 String Name of the location. name2 String Field to store additonal information to the name of location. name3 String Field to store additonal information to the name of location. phone String The phone number of the location. postalcode String Postal code as defined by the government of the country. state String Includes the first subdivision level below the country. Where commonly used, this is a state code such as CA for Califonia. street String The street name. routecoordinate GeoCoordinateType Geo-location of the location for use in calculation of a route to the location Usually the same as coordinate but it is possible coordinate is not accesible from the road. Example Below is an example of a locationtype resource with many of the above attributes: "customattributes": [

40 Custom Location Service API Developer's Guide 40 API Reference name: "division", value: "HERE" ], "name1": "Nokia House 1", "street": "Invalidenstrasse 116", "city": "Berlin", "postalcode": "10115", "phone": " ", "fax": " ", "customerlocationid": "12345", "routecoordinate": "latitude": , "longitude": "coordinate": "latitude": , "longitude": "country": "DEU", "description": "Mo. - Fr.: #08:00-19:00 Sat., Sun: closed" GeoCoordinateType The GeoCoordinateType represents a geographical position. Such a location is a place on Earth north or south of the equator. Latitude or Longitude is a xs:double type with the following restrictions: Must satisfy: -90 value 90 Unit: decimal degrees Reference System: WGS 84 Precision: 7 positions after decimal point, additional positions are ignored Example Below is an example of a GeoCoordinateType response: "locations": [... "coordinate": "latitude": , "longitude": "routecoordinate": "latitude": ,

41 Custom Location Service API Developer's Guide 41 API Reference ].. "longitude": Errors Custom Location Service API can return several types of errors: Error Message Description Bad Request Missing Parameters Required Parameters have not been provided. Bad Request There was a unique key violation. Check data input. Duplicate entry [value] for key [field] Bad Request Invalid Authentication Incorrect authentication credentials given in the request. See Acquiring Credentials on page 8 for more information. Unauthorized User not authorized for this action. User does not have permission rights for export. Error Examples Below you can find several examples of errors in JSON or XML: Missing parameters "status" : "Bad Request", "message" : "Missing parameters", "error" : "Required parameters have not been provided." Unique key violation "status" : "Bad Request", "message" : "There was a unique key violation. Check data input.", "error" : "Duplicate entry 'D ' for key 'unique_customer_loc_id'" Invalid authentication "status" : "Bad Request", "message" : "Error occurred", "error" : "Invalid authentication." Invalid search

42 Custom Location Service API Developer's Guide 42 API Reference <response> <message>unable to complete request.</message> <status>bad Request</status> <error>could not execute query</error> </response>

Custom Location Extension API

Custom Location Extension API Custom Location Extension API Developer's Guide Version 1.6.5.2 Custom Location Extension API Developer's Guide 2 Contents Contents Legal Notices...4 Document Information... 5 Chapter 1: Overview... 6

More information

Custom Location Extension

Custom Location Extension Custom Location Extension User Guide Version 1.4.9 Custom Location Extension User Guide 2 Contents Contents Legal Notices...3 Document Information... 4 Chapter 1: Overview... 5 What is the Custom Location

More information

Batch Geocoder API. Developer's Guide. Version

Batch Geocoder API. Developer's Guide. Version Batch Geocoder API Developer's Guide Version 6.2.24.0 Batch Geocoder API Developer's Guide 2 Contents Contents Legal Notices...3 Document Information... 4 Chapter 1: Overview... 5 What is the Batch Geocoder

More information

Batch Geocoder API. Developer's Guide. Version

Batch Geocoder API. Developer's Guide. Version Batch Geocoder API Developer's Guide Version 6.2.33.4 Batch Geocoder API Developer's Guide 2 Contents Contents Legal Notices...3 Document Information... 4 Chapter 1: Overview... 5 What is the Batch Geocoder

More information

Geofencing Extension API

Geofencing Extension API Geofencing Extension API Developer's Guide Version 1.0 Geofencing Extension API Developer's Guide 2 Contents Contents Legal Notices...3 Document Information... 4 Chapter 1: Overview... 5 What is the Geofencing

More information

Maps API for JavaScript

Maps API for JavaScript Maps API for JavaScript Release Notes Public Version 2.5.3 Maps API for JavaScript Release Notes 2 Contents Contents Legal Notices...3 Document Information... 4 Chapter 1: Overview... 5 Known issues...

More information

Geofencing Extension API

Geofencing Extension API Geofencing Extension API Developer's Guide Version 1.1 Geofencing Extension API Developer's Guide 2 Contents Contents Legal Notices...3 Document Information... 4 Chapter 1: Overview... 5 What is the Geofencing

More information

Maps API for JavaScript

Maps API for JavaScript Maps API for JavaScript Release Notes Version 3.0.7.0 Maps API for JavaScript Release Notes 2 Contents Contents Legal Notices...3 Document Information... 4 Overview...5 Known issues... 6 Added functionality...

More information

Address Management User Guide. PowerSchool 8.x Student Information System

Address Management User Guide. PowerSchool 8.x Student Information System PowerSchool 8.x Student Information System Released July 2014 Document Owner: Documentation Services This edition applies to Release 8.0.1 of the PowerSchool software and to all subsequent releases and

More information

Address Management User Guide. PowerSchool 6.0 Student Information System

Address Management User Guide. PowerSchool 6.0 Student Information System User Guide PowerSchool 6.0 Student Information System Released June 2009 Document Owner: Document Services This edition applies to Release 6.0 of the PowerSchool Premier software and to all subsequent

More information

Terms of Use. Changes. General Use.

Terms of Use. Changes. General Use. Terms of Use THESE TERMS AND CONDITIONS (THE TERMS ) ARE A LEGAL CONTRACT BETWEEN YOU AND SPIN TRANSFER TECHNOLOGIES ( SPIN TRANSFER TECHNOLOGIES, STT, WE OR US ). THE TERMS EXPLAIN HOW YOU ARE PERMITTED

More information

TERMS OF SERVICE. Maui Lash Extensions All Rights Reserved.

TERMS OF SERVICE. Maui Lash Extensions All Rights Reserved. TERMS OF SERVICE Electronic Communication: When you visit our website or send e-mails to us, you are communicating with us electronically. You consent to receive communications from us electronically.

More information

Nokia and Nokia Connecting People are registered trademarks of Nokia Corporation

Nokia and Nokia Connecting People are registered trademarks of Nokia Corporation Nokia and Nokia Connecting People are registered trademarks of Nokia Corporation Nokia E62 Transferring data Nokia E62 Transferring data Legal Notice Copyright Nokia 2006. All rights reserved. Reproduction,

More information

Partner Information. Integration Overview. Remote Access Integration Architecture

Partner Information. Integration Overview. Remote Access Integration Architecture Partner Information Partner Name Product Name Integration Overview Authentication Methods Supported Client Integration OTP Barracuda Networks Barracuda SSL VPN User Name + Security Code VIP Enterprise

More information

Terms Of Use AGREEMENT BETWEEN USER AND DRAKE MODIFICATION OF THESE TERMS OF USE LINKS TO THIRD PARTY WEB SITES USE OF COOKIES

Terms Of Use AGREEMENT BETWEEN USER AND DRAKE MODIFICATION OF THESE TERMS OF USE LINKS TO THIRD PARTY WEB SITES USE OF COOKIES Terms Of Use AGREEMENT BETWEEN USER AND DRAKE This website and other related websites and mobile applications (collectively referred to as "Sites") comprise various web pages and services operated by Drake

More information

StorageGRID Webscale NAS Bridge Management API Guide

StorageGRID Webscale NAS Bridge Management API Guide StorageGRID Webscale NAS Bridge 2.0.3 Management API Guide January 2018 215-12414_B0 doccomments@netapp.com Table of Contents 3 Contents Understanding the NAS Bridge management API... 4 RESTful web services

More information

Oracle Cloud Using Oracle IoT Connected Worker Cloud Service

Oracle Cloud Using Oracle IoT Connected Worker Cloud Service Oracle Cloud Using Oracle IoT Connected Worker Cloud Service 17.4.5 E84369-02 December 2017 Oracle Cloud Using Oracle IoT Connected Worker Cloud Service, 17.4.5 E84369-02 Copyright 2017, Oracle and/or

More information

The Travel Tree Terms and Conditions

The Travel Tree Terms and Conditions The Travel Tree Terms and Conditions Please read the following Terms & Conditions carefully before using this site. Use of this site indicates acceptance of these Terms and Conditions. The following terms

More information

Pi Gateway Windows 7 Operator Manual

Pi Gateway Windows 7 Operator Manual Pi Gateway Windows 7 Operator Manual Issue 2 Legal Information Copyright 2014. Pyramid Innovation Ltd. All rights reserved. Pyramid Innovation Ltd is an ISO 9001:2008 Accredited Company. Pyramid Innovation

More information

Informatica Cloud Spring REST API Connector Guide

Informatica Cloud Spring REST API Connector Guide Informatica Cloud Spring 2017 REST API Connector Guide Informatica Cloud REST API Connector Guide Spring 2017 December 2017 Copyright Informatica LLC 2016, 2018 This software and documentation are provided

More information

Site Impact Policies for Website Use

Site Impact Policies for Website Use Site Impact Policies for Website Use Thank you for visiting the Site Impact website (the Website ). We have set up some ground rules to ensure protection of our rights and yours. Site Impact reserves the

More information

BlackBerry Enterprise Server for Microsoft Office 365. Version: 1.0 Maintenance Release: 1. Release Notes

BlackBerry Enterprise Server for Microsoft Office 365. Version: 1.0 Maintenance Release: 1. Release Notes BlackBerry Enterprise Server for Microsoft Office 365 Version: 1.0 Maintenance Release: 1 Release Notes Published: 2013-07-18 SWD-20130718144837059 Contents 1 New in this release...4 2 Fixed issues...5

More information

Winnebago Industries, Inc. Privacy Policy

Winnebago Industries, Inc. Privacy Policy Winnebago Industries, Inc. Privacy Policy At Winnebago Industries, we are very sensitive to the privacy concerns of visitors to our websites. Though we do not obtain any personal information that individually

More information

My Locations help guide

My Locations help guide IHS CONNECT My Locations help guide MARCH 2016 User Guide connect.ihs.com Contact us: Customer Care OVERVIEW The My Locations feature lets you upload the places of interest to you onto Connect. You can

More information

AsyncOS 11.0 API - Getting Started Guide for Security Appliances

AsyncOS 11.0 API - Getting Started Guide for  Security Appliances AsyncOS 11.0 API - Getting Started Guide for Email Security Appliances First Published: 2017-12-27 Last Modified: -- Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706

More information

Nimsoft Service Desk. Single Sign-On Configuration Guide. [assign the version number for your book]

Nimsoft Service Desk. Single Sign-On Configuration Guide. [assign the version number for your book] Nimsoft Service Desk Single Sign-On Configuration Guide [assign the version number for your book] Legal Notices Copyright 2012, CA. All rights reserved. Warranty The material contained in this document

More information

Veritas ediscovery Platform

Veritas ediscovery Platform Veritas ediscovery Platform Release Notes 8.2 Cumulative Hotfix 3 Release Notes PAGE: 2 Veritas ediscovery Platform : Release Notes 8.2 CHF3 The software described in this book is furnished under a license

More information

Symantec Encryption Management Server and Symantec Data Loss Prevention. Integration Guide

Symantec Encryption Management Server and Symantec Data Loss Prevention. Integration Guide Symantec Encryption Management Server and Symantec Data Loss Prevention Integration Guide The software described in this book is furnished under a license agreement and may be used only in accordance

More information

Release Notes. BlackBerry Enterprise Identity

Release Notes. BlackBerry Enterprise Identity Release Notes BlackBerry Enterprise Identity Published: 2018-03-13 SWD-20180606100327990 Contents New in this release...4 Fixed issues...5 Known issues... 6 Legal notice...8 New in this release New in

More information

FM300 Network Server

FM300 Network Server FM300 Network Server User s Manual March 2005 MEDA, Inc Macintyre Electronic Design Associates, Inc 43676 Trade Center Place, Suite 145 Dulles, VA 20166 Disclaimer of Warranty FM300 Network Server NO WARRANTIES

More information

Nokia Intellisync Mobile Suite Client Guide. S60 Platform, 3rd Edition

Nokia Intellisync Mobile Suite Client Guide. S60 Platform, 3rd Edition Nokia Intellisync Mobile Suite Client Guide S60 Platform, 3rd Edition Published May 2008 COPYRIGHT Copyright 1997-2008 Nokia Corporation. All rights reserved. Nokia, Nokia Connecting People, Intellisync,

More information

Symantec Ghost Solution Suite Web Console - Getting Started Guide

Symantec Ghost Solution Suite Web Console - Getting Started Guide Symantec Ghost Solution Suite Web Console - Getting Started Guide Symantec Ghost Solution Suite Web Console- Getting Started Guide Documentation version: 3.3 RU1 Legal Notice Copyright 2019 Symantec Corporation.

More information

Symantec Enterprise Vault

Symantec Enterprise Vault Symantec Enterprise Vault Guide for Mac OS X Users 10.0 Symantec Enterprise Vault: Guide for Mac OS X Users The software described in this book is furnished under a license agreement and may be used only

More information

MyCreditChain Terms of Use

MyCreditChain Terms of Use MyCreditChain Terms of Use Date: February 1, 2018 Overview The following are the terms of an agreement between you and MYCREDITCHAIN. By accessing, or using this Web site, you acknowledge that you have

More information

Cluster and SVM Peering Express Guide

Cluster and SVM Peering Express Guide ONTAP 9 Cluster and SVM Peering Express Guide December 2017 215-11182_E0 doccomments@netapp.com Updated for ONTAP 9.3 Table of Contents 3 Contents Deciding whether to use this guide... 4 Prerequisites

More information

BCDC 2E, 2012 (On-line Bidding Document for Stipulated Price Bidding)

BCDC 2E, 2012 (On-line Bidding Document for Stipulated Price Bidding) BCDC 2E, 2012 (On-line Bidding Document for Stipulated Price Bidding) CLAUSE 13 ON-LINE BIDDING 13.1 ON-LINE BIDDING.1 Definitions: Owner means the party and/or their agent designated to receive on-line

More information

Veritas SaaS Backup for Office 365

Veritas SaaS Backup for Office 365 Veritas SaaS Backup for Office 365 Documentation version: 1.0 Legal Notice Copyright 2018 Veritas Technologies LLC. All rights reserved. Veritas and the Veritas Logo are trademarks or registered trademarks

More information

4. Save as expressly set out herein no license is granted in respect of any intellectual property rights vested in F1000 or other third parties.

4. Save as expressly set out herein no license is granted in respect of any intellectual property rights vested in F1000 or other third parties. Legal information The website F1000.com is operated by Faculty of 1000 Limited, a company registered in England and Wales with Company Number 3739756, with registered offices at Middlesex House, 34-42

More information

Unified Management Portal

Unified Management Portal Unified Management Portal Unified Management Portal Release Notes 6.2.1 Document Revision History Document Version Date Changes 1.0 12/18/2012 Initial version for UMP 6.2. 1.1 2/4/2013 Updated version

More information

TERMS & CONDITIONS. Complied with GDPR rules and regulation CONDITIONS OF USE PROPRIETARY RIGHTS AND ACCEPTABLE USE OF CONTENT

TERMS & CONDITIONS. Complied with GDPR rules and regulation CONDITIONS OF USE PROPRIETARY RIGHTS AND ACCEPTABLE USE OF CONTENT TERMS & CONDITIONS www.karnevalkings.com (the "Site") is a website and online service owned and operated by the ViisTek Media group of companies (collectively known as "Karnevalkings.com", "we," "group",

More information

One Identity Manager 8.0. Administration Guide for Connecting to a Universal Cloud Interface

One Identity Manager 8.0. Administration Guide for Connecting to a Universal Cloud Interface One Identity Manager 8.0 Administration Guide for Connecting to a Copyright 2017 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software

More information

One Identity Active Roles 7.2

One Identity Active Roles 7.2 One Identity December 2017 This document provides information about the Active Roles Add_on Manager7.2. About Active Roles Add_on Manager New features Known issues System requirements Getting started with

More information

Vantrix Corporation VTA QuickStart

Vantrix Corporation VTA QuickStart Vantrix Corporation VTA QuickStart Version: Date: 56 This material and information ( Information ) constitutes a trade secret of Vantrix Corporation ( Vantrix ) and is strictly confidential. You agree

More information

Enterprise Vault.cloud CloudLink Google Account Synchronization Guide. CloudLink to 4.0.3

Enterprise Vault.cloud CloudLink Google Account Synchronization Guide. CloudLink to 4.0.3 Enterprise Vault.cloud CloudLink Google Account Synchronization Guide CloudLink 4.0.1 to 4.0.3 Enterprise Vault.cloud: CloudLink Google Account Synchronization Guide Last updated: 2018-06-08. Legal Notice

More information

One Identity Starling Two-Factor HTTP Module 2.1. Administration Guide

One Identity Starling Two-Factor HTTP Module 2.1. Administration Guide One Identity Starling Two-Factor HTTP Module 2.1 Administration Guide Copyright 2018 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software

More information

Reference Guide VIB 10/11. (VIB 10 pictured) vehicle integration box

Reference Guide VIB 10/11. (VIB 10 pictured) vehicle integration box VIB 10/11 Reference Guide (VIB 10 pictured) vehicle integration box 2006 2008 Garmin Ltd. or its subsidiaries Garmin International, Inc. Garmin (Europe) Ltd. 1200 East 151st Street, Liberty House Olathe,

More information

Maplytics User Manual MAPLYTICS User Manual

Maplytics User Manual MAPLYTICS User Manual MAPLYTICS User Manual Page 1 of 57 Contents INTRODUCTION... 3 LANGUAGE SUPPORT:... 4 INDIVIDUAL RECORD MAP:... 5 DETAIL MAP... 8 By Location... 9 By Region... 12 By Drawing.... 13 By Territory... 15 By

More information

One Identity Password Manager User Guide

One Identity Password Manager User Guide One Identity Password Manager 5.8.2 User Guide Copyright 2018 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this guide

More information

One Identity Manager Administration Guide for Connecting to SharePoint

One Identity Manager Administration Guide for Connecting to SharePoint One Identity Manager 8.0.2 Administration Guide for Connecting to Copyright 2018 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software

More information

Quick Connection Guide

Quick Connection Guide ServiceNow Connector Version 1.0 Quick Connection Guide 2015 Ping Identity Corporation. All rights reserved. PingFederate ServiceNow Connector Quick Connection Guide Version 1.0 August, 2015 Ping Identity

More information

One Identity Active Roles 7.2. Azure AD and Office 365 Management Administrator Guide

One Identity Active Roles 7.2. Azure AD and Office 365 Management Administrator Guide One Identity Active Roles 7.2 Azure AD and Office 365 Management Administrator Copyright 2017 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright.

More information

Partner Information. Integration Overview Authentication Methods Supported

Partner Information. Integration Overview Authentication Methods Supported Partner Information Partner Name Product Name Integration Overview Authentication Methods Supported Client Integration F5 Networks FirePass VPN User Name - Security Code User Name - Password - Security

More information

Toad Edge 2.0 Preview

Toad Edge 2.0 Preview Toad Edge 2.0 Preview March 2018 These release notes provide information about the Toad Edge release. About Toad Edge 2.0 Preview New features of Toad Edge Known issues System requirements Getting started

More information

QUARTZ LEGAL TERMS AND CONDITIONS

QUARTZ LEGAL TERMS AND CONDITIONS QUARTZ LEGAL TERMS AND CONDITIONS 1. USE OF THIS WEBSITE: The Quartz vodka website is owned and operated by Ungava Spirits Co. Ltd. (collectively hereafter "Site Owner"). Your use of this website is subject

More information

Oracle Technology Network Developer License Terms for Java Card Classic Edition and Java Card Connected Edition Specifications

Oracle Technology Network Developer License Terms for Java Card Classic Edition and Java Card Connected Edition Specifications Oracle Technology Network Developer License Terms for Java Card Classic Edition and Java Card Connected Edition Specifications Export Controls Export laws and regulations of the United States and any other

More information

Dell One Identity Quick Connect for Cloud Services 3.6. Administrator Guide

Dell One Identity Quick Connect for Cloud Services 3.6. Administrator Guide Dell One Identity Quick Connect for Cloud Services 3.6 2014 Dell Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this guide is furnished

More information

[ITED STANDARD EDITION] International Telephone Exchange Database reference manual. Quentin Sager Consulting, Inc.

[ITED STANDARD EDITION] International Telephone Exchange Database reference manual. Quentin Sager Consulting, Inc. Quentin Sager Consulting, Inc. [ITED STANDARD EDITION] International Telephone Exchange Database reference manual ITED is a trademark of Quentin Sager Consulting, Inc. ITED Standard Edition 2 This document

More information

CA Mobile Device Management Configure Access Control for Using Exchange PowerShell cmdlets

CA Mobile Device Management Configure Access Control for  Using Exchange PowerShell cmdlets CA Mobile Device Management Configure Access Control for Email Using Exchange PowerShell cmdlets This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter

More information

CALSTRS ONLINE AGREEMENT TERMS AND CONDITIONS

CALSTRS ONLINE AGREEMENT TERMS AND CONDITIONS CALSTRS ONLINE AGREEMENT TERMS AND CONDITIONS INTRODUCTION: Before the California State Teachers Retirement System (hereinafter "CalSTRS," "We," or "Us") will provide services found at mycalstrs.com (the

More information

One Identity Manager 8.0. Administration Guide for Connecting to Azure Active Directory

One Identity Manager 8.0. Administration Guide for Connecting to Azure Active Directory One Identity Manager 8.0 Administration Guide for Connecting to Copyright 2017 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described

More information

Enterprise Vault Guide for Outlook Users

Enterprise Vault Guide for Outlook Users Enterprise Vault Guide for Outlook Users (Full Functionality) 12.3 Enterprise Vault : Guide for Outlook Users Last updated: 2018-03-29. Legal Notice Copyright 2018 Veritas Technologies LLC. All rights

More information

Entrust PartnerLink Login Instructions

Entrust PartnerLink Login Instructions Entrust PartnerLink Login Instructions Contents Introduction... 4 Purpose 4 Overview 4 Prerequisites 4 Instructions... 5 Entrust is a registered trademark of Entrust, Inc. in the United States and certain

More information

Symantec Enterprise Vault

Symantec Enterprise Vault Symantec Enterprise Vault Guide for Microsoft Outlook 2010 Users 9.0 Symantec Enterprise Vault: Guide for Microsoft Outlook 2010 Users The software described in this book is furnished under a license agreement

More information

WebEx Connector. Version 2.0. User Guide

WebEx Connector. Version 2.0. User Guide WebEx Connector Version 2.0 User Guide 2016 Ping Identity Corporation. All rights reserved. PingFederate WebEx Connector User Guide Version 2.0 May, 2016 Ping Identity Corporation 1001 17th Street, Suite

More information

Prime Service Catalog: UCS Director Integration Best Practices Importing Advanced Catalogs

Prime Service Catalog: UCS Director Integration Best Practices Importing Advanced Catalogs Prime Service Catalog: UCS Director Integration Best Practices Importing Advanced Catalogs May 10, 2017 Version 1.0 Cisco Systems, Inc. Corporate Headquarters 170 West Tasman Drive San Jose, CA 95134-1706

More information

PGP Viewer for ios. User s Guide 1.0

PGP Viewer for ios. User s Guide 1.0 PGP Viewer for ios User s Guide 1.0 The software described in this book is furnished under a license agreement and may be used only in accordance with the terms of the agreement. Version 1.0.2. Last updated:

More information

One Identity Starling Two-Factor Authentication. Administrator Guide

One Identity Starling Two-Factor Authentication. Administrator Guide One Identity Authentication Administrator Guide Copyright 2017 Quest Software Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this

More information

Veritas SaaS Backup for Salesforce

Veritas SaaS Backup for Salesforce Veritas SaaS Backup for Salesforce Documentation version: 2.0 Legal Notice Copyright 2018 Veritas Technologies LLC. All rights reserved. Veritas and the Veritas Logo are trademarks or registered trademarks

More information

The Data Journalist Chapter 7 tutorial Geocoding in ArcGIS Desktop

The Data Journalist Chapter 7 tutorial Geocoding in ArcGIS Desktop The Data Journalist Chapter 7 tutorial Geocoding in ArcGIS Desktop Summary: In many cases, online geocoding services are all you will need to convert addresses and other location data into geographic data.

More information

Symantec PGP Viewer for ios

Symantec PGP Viewer for ios Symantec PGP Viewer for ios User's Guide 1.0 The software described in this book is furnished under a license agreement and may be used only in accordance with the terms of the agreement. Version 1.0.0.

More information

One Identity Starling Two-Factor Authentication. Administration Guide

One Identity Starling Two-Factor Authentication. Administration Guide One Identity Starling Two-Factor Authentication Copyright 2018 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this

More information

Symantec Enterprise Vault

Symantec Enterprise Vault Symantec Enterprise Vault Guide for Microsoft Outlook 2010/2013 Users 11.0 Light Outlook Add-In Symantec Enterprise Vault: Guide for Microsoft Outlook 2010/2013 Users The software described in this book

More information

Blazer Express FAQ. Blazer Express V1.4 Frequently Asked Questions (FAQ)

Blazer Express FAQ. Blazer Express V1.4 Frequently Asked Questions (FAQ) Blazer Express V1.4 Frequently Asked s (FAQ) Frequently Asked s COPYRIGHT 2017 Hangzhou Hikvision Digital Technology Co., Ltd. ALL RIGHTS RESERVED. Any and all information, including, among others, wordings,

More information

Forms on Demand. Administrator's Guide. April

Forms on Demand. Administrator's Guide. April Forms on Demand Administrator's Guide April 2010 www.lexmark.com Lexmark and Lexmark with diamond design are trademarks of Lexmark International, Inc., registered in the United States and/or other countries.

More information

ORACLE USER PRODUCTIVITY KIT USAGE TRACKING ADMINISTRATION & REPORTING RELEASE SERVICE PACK 1 PART NO. E

ORACLE USER PRODUCTIVITY KIT USAGE TRACKING ADMINISTRATION & REPORTING RELEASE SERVICE PACK 1 PART NO. E ORACLE USER PRODUCTIVITY KIT USAGE TRACKING ADMINISTRATION & REPORTING RELEASE 3.6.1 SERVICE PACK 1 PART NO. E17383-01 MARCH 2010 COPYRIGHT Copyright 1998, 2010, Oracle and/or its affiliates. All rights

More information

Destinator SP for Symbian User Guide. Destinator Technologies. Destinator SP for Symbian User Guide 1

Destinator SP for Symbian User Guide. Destinator Technologies. Destinator SP for Symbian User Guide 1 Destinator SP for Symbian User Guide Destinator Technologies Destinator SP for Symbian User Guide 1 Notices, Disclaimers, and Terms of Use 1. Limited Product Warranty Destinator Technologies Inc., warrants

More information

Nimsoft Monitor. proxy Guide. v3.1 series

Nimsoft Monitor. proxy Guide. v3.1 series Nimsoft Monitor proxy Guide v3.1 series Legal Notices Copyright 2012, CA. All rights reserved. Warranty The material contained in this document is provided "as is," and is subject to being changed, without

More information

Product Release Information

Product Release Information Product Release Information Product: Cyberoam Release Number: 9.4.1 build 2 Release Date: 20 th March, 2007 Compatible versions: 9.4.1. build 0 Upgrade: Auto Upgrade Customer Support: For more information

More information

BlackBerry Enterprise Server Express for IBM Lotus Domino. Compatibility Matrix. September 20, 2012

BlackBerry Enterprise Server Express for IBM Lotus Domino. Compatibility Matrix. September 20, 2012 BlackBerry Enterprise Server Express for IBM Lotus Domino Compatibility Matrix September 20, 2012 2012 Research In Motion Limited. All rights reserved. www.rim.com Page: 1 Operating Systems: BlackBerry

More information

Blue Coat ProxySG First Steps Solution for Controlling HTTPS SGOS 6.7

Blue Coat ProxySG First Steps Solution for Controlling HTTPS SGOS 6.7 Blue Coat ProxySG First Steps Solution for Controlling HTTPS SGOS 6.7 Legal Notice Copyright 2018 Symantec Corp. All rights reserved. Symantec, the Symantec Logo, the Checkmark Logo, Blue Coat, and the

More information

BlackBerry Java Development Environment (JDE)

BlackBerry Java Development Environment (JDE) 1 BlackBerry Java Applications for Accessing SAP Applications BlackBerry Java Development Environment The BlackBerry Java Development Environment (JDE) is a fully integrated development and simulation

More information

JD Edwards EnterpriseOne 8.12 Standalone Client Installation Guide. for the Oracle Application Server

JD Edwards EnterpriseOne 8.12 Standalone Client Installation Guide. for the Oracle Application Server JD Edwards EnterpriseOne 8.12 Standalone Client Installation Guide for the Oracle Application Server April 2006 JD Edwards EnterpriseOne 8.12 Standalone Client Installation Guide Copyright 2006, Oracle.

More information

DATA MANAGEMENT MODEL

DATA MANAGEMENT MODEL DATA MANAGEMENT MODEL InfoCoSM Arto Vuorela Vesa Roivas Jean-Pierre Houix 26-29.6.2006 INTRODUCTION This report is an intermediary report summarizing the main objectives to be reached by the end of July

More information

INCLUDING MEDICAL ADVICE DISCLAIMER

INCLUDING MEDICAL ADVICE DISCLAIMER Jordan s Guardian Angels Terms and Conditions of Use INCLUDING MEDICAL ADVICE DISCLAIMER Your use of this website and its content constitutes your agreement to be bound by these terms and conditions of

More information

BlackBerry Enterprise Server Express for Microsoft Exchange

BlackBerry Enterprise Server Express for Microsoft Exchange BlackBerry Enterprise Server Express for Microsoft Exchange Compatibility Matrix March 25, 2013 2013 Research In Motion Limited. All rights reserved. www.rim.com Page: 1 Operating Systems: BlackBerry Enterprise

More information

Oracle Cloud Using the Google Calendar Adapter with Oracle Integration

Oracle Cloud Using the Google Calendar Adapter with Oracle Integration Oracle Cloud Using the Google Calendar Adapter with Oracle Integration E85501-05 January 2019 Oracle Cloud Using the Google Calendar Adapter with Oracle Integration, E85501-05 Copyright 2017, 2019, Oracle

More information

Symantec Validation & ID Protection Service. Integration Guide for Microsoft Outlook Web App

Symantec Validation & ID Protection Service. Integration Guide for Microsoft Outlook Web App Symantec Validation & ID Protection Service Integration Guide for Microsoft Outlook Web App 2 Symantec VIP Integration Guide for Microsoft Outlook Web App The software described in this book is furnished

More information

Symantec Workflow Solution 7.1 MP1 Installation and Configuration Guide

Symantec Workflow Solution 7.1 MP1 Installation and Configuration Guide Symantec Workflow Solution 7.1 MP1 Installation and Configuration Guide Symantec Workflow Installation and Configuration Guide The software described in this book is furnished under a license agreement

More information

NDEV Mobile HTTP Services for NDEV Mobile Clients

NDEV Mobile HTTP Services for NDEV Mobile Clients NDEV Mobile HTTP Services for NDEV Mobile Clients Notice NDEV Mobile HTTP Services for NDEV Mobile Clients Copyright 2011-2012 Nuance Communications, Inc. All rights reserved. Published by Nuance Communications,

More information

VeriSign Managed PKI for SSL and Symantec Protection Center Integration Guide

VeriSign Managed PKI for SSL and Symantec Protection Center Integration Guide VeriSign Managed PKI for SSL and Symantec Protection Center Integration Guide VeriSign Managed PKI for SSL and Symantec Protection Center Integration Guide The software described in this book is furnished

More information

Cisco Terminal Services (TS) Agent Guide, Version 1.1

Cisco Terminal Services (TS) Agent Guide, Version 1.1 First Published: 2017-05-03 Last Modified: 2017-12-19 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com Tel: 408 526-4000 800 553-NETS (6387)

More information

One Identity Active Roles 7.2. Replication: Best Practices and Troubleshooting Guide

One Identity Active Roles 7.2. Replication: Best Practices and Troubleshooting Guide One Identity Active Roles 7.2 Replication: Best Practices and Troubleshooting Copyright 2017 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The

More information

Message Manager Administrator Guide

Message Manager Administrator Guide Message Manager Administrator Guide Documentation version: 2.0 Legal Notice Legal Notice Copyright 2012 Symantec Corporation. All rights reserved. Symantec and the Symantec Logo are trademarks or registered

More information

SonicWall Secure Mobile Access

SonicWall Secure Mobile Access SonicWall Secure Mobile Access 8.5.0.10 November 2017 These release notes provide information about the SonicWall Secure Mobile Access (SMA) 8.5.0.10 release. Topics: About Secure Mobile Access 8.5.0.10

More information

Symantec Enterprise Security Manager Baseline Policy Manual for CIS Benchmark. AIX 5.3 and 6.1

Symantec Enterprise Security Manager Baseline Policy Manual for CIS Benchmark. AIX 5.3 and 6.1 Symantec Enterprise Security Manager Baseline Policy Manual for CIS Benchmark AIX 5.3 and 6.1 Symantec Enterprise Security Manager Baseline Policy Manual for CIS Benchmark for AIX 5.3 and 6.1 The software

More information

Teams LX. Instructor Guide. Copyright 2004 Learning Objects, Inc. 01/01/2005 i

Teams LX. Instructor Guide. Copyright 2004 Learning Objects, Inc. 01/01/2005 i Instructor Guide Terms of Use... ii Overview... 4 What is Teams LX?... 4 What can Teams LX be used for?... 4 Types of Team Sites... 5 Course/Organization Team Site... 5 Group Team Site... 5 Instructor

More information

Oracle Technology Network Developer License Terms for Java Card Classic Edition and Java Card Connected Edition Software Development Kits

Oracle Technology Network Developer License Terms for Java Card Classic Edition and Java Card Connected Edition Software Development Kits Oracle Technology Network Developer License Terms for Java Card Classic Edition and Java Card Connected Edition Software Development Kits Export Controls Export laws and regulations of the United States

More information

ITSS practice group ITSS. Standard Specification. ITSS Interface 1. (Telematics Application Customer System) Version 1.1

ITSS practice group ITSS. Standard Specification. ITSS Interface 1. (Telematics Application Customer System) Version 1.1 ITSSStandardSpecificationInterface1V1-1.docx ITSS practice group ITSS Standard Specification ITSS Interface 1 (Telematics Application Customer System) Version 1.1 ITSS practice group page 1 of 80 ITSSStandardSpecificationInterface1V1-1.docx

More information

Veritas Backup Exec Migration Assistant

Veritas Backup Exec Migration Assistant Veritas Backup Exec Migration Assistant Legal Notice Copyright 2017 Veritas Technologies LLC. All rights reserved. Veritas and the Veritas Logo are trademarks or registered trademarks of Veritas Technologies

More information

Operating Instructions

Operating Instructions Read this manual carefully before you use this service and keep it handy for future reference. About This Book Operating Instructions TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW: THE SUPPLIER SHALL

More information