Wave REST API Developer Guide

Size: px
Start display at page:

Download "Wave REST API Developer Guide"

Transcription

1 Wave REST API Developer Guide Salesforce, Spring Last updated: March 17, 2017

2 Copyright salesforce.com, inc. All rights reserved. Salesforce is a registered trademark of salesforce.com, inc., as are other names and marks. Other marks appearing herein may be trademarks of their respective owners.

3 CONTENTS WORKING WITH THE WAVE REST API Wave REST API Overview Wave REST API Authentication WAVE REST API REFERENCE Wave REST API Resources Overview Wave Resource Query Resource Charts Geodata List Resource Charts Geodata Resource Charts Geodata File List Resource Charts Maps List Resource Charts Maps Resource Datasets List Resource Dataset Resource s List Resource Resource File Resource XMD List Resource XMD Resource Lenses List Resource Lens Resource Lens File Resource Lens File Metadata Resource Dashboards List Resource Dashboard Resource Dependencies Resource Features Configuration Resource Folders List Resource Folder Resource Replicated Datasets Resource Replicated Datasets List Resource Replicated Dataset Fields Resource Templates List Resource Templates Resource Templates Configuration Resource Template Release Notes Resource Trended Reports List Resource Trended Reports Resource

4 Contents Annotations List Resource Annotation Resource

5 WORKING WITH THE WAVE REST API Wave REST API Overview You can access Wave Analytics datasets and lenses programmatically using the Wave REST API. Using the Wave REST API, you can: Send queries directly to the Wave Platform. Access datasets that have been imported into the Wave Platform. Create and retrieve Wave Analytics lenses. Access XMD information. Retrieve a list of dataset versions. Create and retrieve Wave Analytics applications. Create, update, and retrieve Wave Analytics dashboards. Retrieve a list of dependencies for an application. Determine what features are available to the user. Work with and schedule Trend in Wave report snapshots. Manipulate replicated datasets. Get, add, update, and delete eclair geo map charts. The Wave REST API is based on the Chatter REST API and follows its conventions. For more information about the Chatter REST API, see the Chatter REST API Developer Guide. Important: The internal API, that was previously used in the Wave UI, also labeled as private and for Salesforce only, is not supported. This internal API will be depricated, as first noted in API version 36. Clients using this internal private API will not have access to any newly created or updated dashboard assets created using tools in the latest release. We encourage developers of such clients to port them to the Wave API GA. Wave REST API Authentication Salesforce uses the OAuth protocol to allow users of applications to securely access data without having to reveal username and password credentials. The following sections introduce authentication and provide the steps you need to follow to set up authorization and connect to Wave REST API using OAuth. Understanding Authentication Before making API calls using the Wave API, you must authenticate the application user using OAuth 2.0. To do so, you ll need to do the following: Set up your application as a connected app in the Salesforce organization. Determine the correct Salesforce OAuth endpoint for your connected app to use. 1

6 Working with the Wave REST API Wave REST API Authentication Authenticate the connected app user via one of several different OAuth 2.0 authentication flows. An OAuth authentication flow defines a series of steps used to coordinate the authentication process between your application and Salesforce. Supported OAuth flows include the following: Web server flow, where the server can securely protect the consumer secret. User-agent flow, used by applications that cannot securely store the consumer secret. Username-password flow, where the application has direct access to user credentials. Set Up Authorization Create a connected app in a Salesforce organization and enable OAuth. The client application uses the connected app to connect to Salesforce. 1. In your Salesforce organization, from Setup, click Create Apps, and in the Connected Apps section, click New to create a new connected app. 2. Clients can use a connected app to sign in to any organization, even if the connected app isn t defined in that organization. 3. Enter a connected app name. 4. Select Enable OAuth Settings. 5. Enter a Callback URL. It must be secure: use and not 6. Enter an OAuth scope. Select Access and manage your data (api) in addition to any other scope you want your connected app to allow access to. 7. Click Save. 8. The Consumer Key is created and displayed, and a Consumer Secret is created (click the link to reveal it). Connect to Wave REST API Using OAuth Use OAuth to connect to Salesforce and get an access token. Pass the access token in requests to Wave API. This table maps the terms used in the connected app you created to the OAuth properties used in the examples. The OAuth 2.0 specification uses the word client instead of consumer. Connected App Application Label Consumer Key Consumer Secret Value in Example client_id Key client_secret Note: The instructions here use the username-password OAuth authentication flow. The username-password authentication flow passes the user s credentials back and forth. Use this authentication flow only when necessary. No refresh token will be issued. To make a request to Salesforce, substitute values from your organization into these examples: 1. Generate the access token. This curl command generates an access token: curl --form client_id=3mvg9phr6g6b7ps4xdycwgri4pvjvzvk9 --form client_secret=

7 Working with the Wave REST API Wave REST API Authentication --form grant_type=password --form --form password=1lsfdc! Note: To paste a multiline command into a Mac or Linux command line interface, escape each line with a backslash ( \ ) to indicate that the command continues on the next line. An escaped line looks like this: curl --form client_id=3mvg9phr6g6b7ps4xdycwgri4pvjvzvk9 \ To paste a multi-line command into the Windows Command Prompt, escape each line with a caret ( ^ ). An escaped line looks like this: curl --form client_id=3mvg9phr6g6b7ps4xdycwgri4pvjvzvk9 ^ The response includes the server instance and the access token: { "id":" "issued_at":" ", "instance_url":" "signature":"5jcevy5fuai0lwntusxkwbzwcvrjd01rcokibzpygv0=", "access_token":"00dd fj6t!aqkaqpde_dmf2vgzddfzmbrs95gojdbta rkkgukagzp0ovfyy5kkaqhlw9ejekilpj3fgwgawerlbiwrt8mfxeuazgbznosk" } 2. To request a Wave REST API resource, use the returned instance_url as the server instance. Pass the returned access_token as a Bearer token in the Authorization request header. curl -X GET -H 'Authorization: Bearer 00DD FJ6T!AQkAQPde_DMF2vGzddfZmBRS95Goj DbtArKkgukAgZP0OVFYY5KkAqhLw9ejeKIlpJ3FgwGAWeRlBiWRt8mfXEuAZGbZNosk' Property Server instance client_id client_secret grant_type username password Value in Example yourinstance.salesforce.com 3MVG9PhR6g6B7ps4xDycwGrI4PvjVZvK password The value of grant_type depends on the OAuth authentication flow you use admin@seattleapps.com 1Lsfdc! 3

8 WAVE REST API REFERENCE Wave REST API Resources Overview The Wave REST API provides resources so you can access your Wave Analytics data. All Wave REST API resources are accessed using: A base URI for your company (for example, information (for example, /services/data/v) A named resource (for example, /wave) Put together, an example of the full URL to the resource is: hhttps://yourinstance.salesforce.com/services/data/v/wave Org and Object Identifiers Id fields in Salesforce, and in the Wave UI, are typically 15-character, base-62, case-sensitive strings. This is true of JSON XMD too. However, many Salesforce APIs, including the Wave REST API, use 18-character, case-insensitive strings for example, the Id property of the Dataset resource/wave/datasets/<dataset ID>. The last three digits are a checksum of the preceding 15 characters. The use of case-insensitive Id s eases interaction with external applications and development environments that use case-insensitive references. To convert an 18-character Id back to a 15-character ID, simply remove the last three characters. Resource Supported HTTP Method Resource URL Wave Resource Lists the top-level resources available for Wave Analytics. GET /wave Query Resource Executes a query written in Salesforce Analytics Query Language (SAQL). POST /wave/query Datasets List Resource Returns a list of Wave Analytics datasets. GET /wave/datasets Dataset Resource Returns the Wave Analytics dataset with the specified ID, deletes a dataset (DELETE), or updates a dataset (PATCH). GET, DELETE, PATCH /wave/datasets/<dataset ID> s List Resource Returns a collection of dataset versions for a particular dataset. GET /wave/datasets/<dataset ID> /versions Resource Returns a Wave Analytics dataset version (GET), or updates the predicate (PATCH). GET, PATCH /wave/datasets/<dataset ID> /versions/<version ID> File Resource Provides access to the binary content of the dataset file. GET /wave/datasets/<dataset ID> /versions/<version ID> /files/<file ID> 4

9 Wave REST API Resources Overview Resource Supported HTTP Method Resource URL XMD List Resource Returns a list of XMD resources for a version of a dataset. GET /wave/datasets/<dataset ID> /versions/<version ID>/xmds XMD Resource Returns the extended metadata (XMD) for a version of a dataset (GET) and replaces the user XMD file (PUT). GET, PUT /wave/datasets/<dataset ID> /versions/<version ID>/xmds/<XMD type> Lenses List Resource Returns a list of Wave Analytics lenses (GET), or creates a lens (POST). GET, POST /wave/lenses Lens Resource Returns a JSON file that describes the structure of a Wave Analytics lens with the specified ID (GET), deletes a lens (DELETE), or updates a lens (PATCH). GET, DELETE, POST /wave/lenses/<lens ID> Lens File Resource Returns a file that is part of a Wave Analytics lens. GET, PUT /wave/lenses/<lenses ID> /files/<files ID> Dashboards List Resource Returns a list of Wave Analytics dashboards, or creates a dashboard. GET, POST /wave/dashboards Dashboard Resource Returns or updates the dashboard with the specified ID or API name. GET, DELETE, PATCH /wave/dashboards/<dashboard ID> Dependencies Resource Returns the dependencies for an application (folder). GET /wave/dependencies/<folder ID> Folders List Resource Creates a Wave Analytics application (POST), which is a folder that contains Wave datasets, lenses, and dashboards, or returns a collection of applications or folders (GET). GET, POST /wave/folders Folder Resource Replicated Datasets Resource Returns the representation for a Wave Analytics application or folder (GET), replaces an application or folder (PUT), updates it (PATCH), or deletes it (DELETE). Replicates data from an external Source Object into a Wave as a dataset. Replicated Datasets are not intended to be visualized directly, but are used like a cache to speed up other workflows which refer to the same source object. GET, PUT, PATCH, DELETE GET, PATCH, DELETE /wave/folders/<folder ID> /wave/replicateddatasets/<id> Replicated Datasets List Resource Returns a list of replicated datasets. GET, POST wave/replicateddatasets Replicated Dataset Fields Resource A list of Replicated Fields for a particular Replicated Dataset. GET, PATCH /wave/replicateddatasets/<id>/fields 5

10 Wave REST API Resources Overview Resource Supported HTTP Method Resource URL Templates List Resource Returns a list of Wave Analytics templates, or adds a template. GET /wave/templates Templates Resource Returns a list of Wave Analytics templates, or adds a template. GET /wave/templates /<templateidorapiname> Templates Configuration Resource Returns the configuration of a Wave Analytics template. GET /wave/templates /<templateidorapiname> /configuration Trended Reports List Resource Returns or adds to a collection of Trending Reports. GET, POST /wave/trendedreports Trended Reports Resource Returns, deletes, or updates a Trending Report. DELETE, GET, PATCH /wave/trendedreports/<id> Lens File Metadata Resource Resource for management of Wave lens file metadata. GET, POST /wave/lenses/<lensid>/files Features Configuration Resource The Wave features that are available to a user. GET /wave/config/features Annotations List Resource on page 138 A collection of annotations. GET, POST /wave/annotations Annotations Resource on page 139 An asset's annotations. GET, PATCH /wave/annotations/<annotation ID> Template Release Notes Resource on page 129 Resource for retrieving the release notes for a single Wave Analytics Template. GET /wave/templates/<templateidorapiname>/releasenotes Charts Maps List Resource on page 12 Get the collection of maps, or post a new map. GET POST /eclair/maps Charts Maps Resource on page 16 Get, update, or delete a specific map. DELETE GET PATCH /eclair/maps/<id> Charts Geodata Resource on page 11 Get, update, or delete a specific geodata definition. DELETE GET PATCH /eclair/geodata/<id> 6

11 Wave Resource Resource Supported HTTP Method Resource URL Charts Geodata List Resource on page 9 Charts Geodata File List Resource on page 12 Get the collection of geodata definitions, or post a new one. Get the binary file associated with a geodata definition. GET POST GET /eclair/geodata /eclair/geodata/<id>/file Filtering REST Responses Returns the representation for a Wave Analytics application or folder (GET), replaces an application or folder (PUT), updates it (PATCH), or deletes it (DELETE). In addition to Wave REST API input parameters, you can use the following Chatter REST API input parameters to filter the results returned from a request: filtergroup, external, and internal. For more information, see Specifying Response Sizes in the Chatter REST API Developer Guide. Wave Resource Lists the top-level resources available for Wave Analytics. Resource URL /wave Formats JSON HTTP Methods GET GET Response Body Filter Group and datasets The URL to the datasets resource for the organization. Small, lenses The URL to the lenses resource for the organization. Small, query The URL to the query resource for the organization. Small, Example Response Body { "datasets" : "/services/data/v/wave/datasets", 7

12 Query Resource } "lenses" : "/services/data/v/wave/lenses", "query" : "/services/data/v/wave/query" Query Resource Executes a query written in Salesforce Analytics Query Language (SAQL). Resource URL /wave/query Formats JSON HTTP Methods POST POST Request Body query The SAQL query in JSON format. Required Example Request Body { } "query":"q = load \"0Fbxx CAA/0Fcxx dCAA\"; q = group q by 'FirstName'; q = foreach q generate 'FirstName' as 'FirstName', count() as 'count'; q = limit q 2000;" POST Response Body json The results of a SAQL query, in JSON format. Small, Example Response Body { "action":"query", "responseid":"3vy-e9ymx-tiwe0769jud-", "results": { "records":[ {"FirstName":"","count":1}, 8

13 Charts Geodata List Resource } {"FirstName":"Admin","count":1}, {"FirstName":"Integration","count":1}, {"FirstName":"Security","count":1}]}, "query":"q = load \"0Fbxx CAA/0Fcxx dCAA\"; q = group q by 'FirstName'; q = foreach q generate 'FirstName' as 'FirstName', count() as 'count'; q = limit q 2000;", "responsetime":544 For more information about creating SAQL queries, see Wave Analytics SAQL Reference. Charts Geodata List Resource Get the collection of geodata definitions, or post a new one. Resource URL /eclair/geodata Formats JSON HTTP Methods GET POST GET Request Parameters Parameter Name page Int The page number you want to view. pagesize Int How many items you want to view on each page, up to 500. GET Response Body GeoDataCollection POST Request Parameters Parameter Name geodatafile Binary The geojson file you want to upload. geodataobject Object (GeoDataInput) List of all relevant information about the GeoData, i.e. { "label": "My GeoData" }. 9

14 Charts Geodata List Resource POST Request Body GeoDataInput POST Response Body GeoData GeoDataCollection geodata GeoData [] A list of the geodata. Small, GeoData id The ID of this geo data record. Small, label The user set name for the geo data. Small, name The developer name for the geo data. Small, namespace The namespace of the geo data. Small, type ConnectEclairGeo DataEnum The type of geo data (currently just GeoJSON). Small, url The url to retrieve the geodata. Small, GeoDataInput label Sets the GeoData label. name Sets the GeoData developer name. Example curl request to create a geodata resource from a GeoJson file curl -H "X-PrettyPrint: 1" \ -F 'json={"label": "GeoJsonLabel","name": "<developer_name>"};type=application/json' \ -F "geodatafile=@yourgeonjsonfile.json" \ -X POST \ \ -H 'Authorization: OAuth Oauth Token' 10

15 Charts Geodata Resource Example Response Body { } "id" : "05oP LIAQ", "label" : "GeoJsonLabel", "name" : "<developer_name>", "type" : "geojson", "url" : "/services/data/v/eclair/geodata/05op liaq/file" Charts Geodata Resource Get, update, or delete a specific geodata definition. Resource URL /eclair/geodata/<id> Formats JSON HTTP Methods DELETE GET PATCH GET Response Body GeoData id The ID of this geo data record. Small, label The user set name for the geo data. Small, name The developer name for the geo data. Small, namespace The namespace of the geo data. Small, type ConnectEclairGeo DataEnum The type of geo data (currently just GeoJSON). Small, url The url to retrieve the geodata. Small, PATCH Request Parameters Parameter Name geodatafile Binary The geojson file you want to upload. geodataobject Object (GeoDataInput) List of all relevant information about the GeoData, i.e. { "label": "My GeoData" }. 11

16 Charts Geodata File List Resource PATCH Request Body GeoDataInput label Sets the GeoData label. name Sets the GeoData developer name. PATCH Response Body GeoData id The ID of this geo data record. Small, label The user set name for the geo data. Small, name The developer name for the geo data. Small, namespace The namespace of the geo data. Small, type ConnectEclairGeo DataEnum The type of geo data (currently just GeoJSON). Small, url The url to retrieve the geodata. Small, Charts Geodata File List Resource Get the binary file associated with a geodata definition. Resource URL /eclair/geodata/<id>/file Formats JSON HTTP Methods GET GET Response Body Streamed. Returns a binary stream of the contents of the specified file. Charts Maps List Resource Get the collection of maps, or post a new map. 12

17 Charts Maps List Resource Resource URL /eclair/maps Formats JSON HTTP Methods GET POST GET Request Parameters Parameter Name page Int The page number you want to view. pagesize Int How many items you want to view on each page, up to 500. GET Response Body MapCollection maps Map [] The list of the collection. Small, POST Request Parameters Parameter Name geomapobject Object (MapInput) List of all relevant information about the map, i.e. { "label": "My Map" }. POST Request Body MapInput boundingbox MapBoundingBox Input Sets the Map bounding box. geodata AssetReference Input Sets the parent GeoData. 13

18 Charts Maps List Resource label Sets the Map label. name Sets the Map name projection ConnectEclairMap Projection Enum Sets the Map projection (AlbersUSA, Equirectangular, or Mercator) POST Response Body Map boundingbox BoundingBox The bounding box of the geo map Small, createdby User The creator of the map Small, createddate Date The date when this map was created Small, geodata GeoData The geo data of the map Small, id The 18 character user ID Small, label The label of the map Small, name The name of the map Small, namespace The namespace of the map Small, projection ConnectEclairMap Projection Enum The projection used by the map (AlbersUSA, Equirectangular, or Mercator) Small, url The url to the map representation Small, MapBoundingBoxInput bottom Double The bottom boundary of the geo map Required left Double The left boundary of the geo map Required right Double The right boundary of the geo map Required top Double The top boundary of the geo map Required 14

19 Charts Maps List Resource BoundingBox bottom Double The bottom boundary of the geo map Small, left Double The left boundary of the geo map Small, right Double The right boundary of the geo map Small, top Double The top boundary of the geo map Small, User id The 18 character user ID Small, name The name of the user Small, Example curl request (without bounding boxes) curl -H "X-PrettyPrint: 1" \ -d '{"geodata": {"id": "<id_of_geodata_resource>"},"name": "<developer_name_for_map>","label": "<display_label_for_map>","projection": "equirectangular"}' \ -F "geodatafile=@yourgeonjsonfile.json" \ -X POST \ \ -H 'Authorization: OAuth Oauth Token' Example Response Body { "boundingbox": {}, "createdby": { "id": "005G KRG3IAO", "name": "Anand B Narasimhan" }, "createddate": " T13:18:53.000Z", "geodata": { "id": "05oP BIAQ", "label": "PA_Territories", "name": "PA_Territories", "type": "geojson", "url": "/services/data/v/eclair/geodata/05op biaq/file" }, "id": "05pP aIAA", "label": "map_lable", "name": "map_name", "projection": "equirectangular", 15

20 Charts Maps Resource } "url": "/services/data/v/eclair/maps/05pp aiaa" Example curl request (with bounding boxes) curl -H "X-PrettyPrint: 1" \ -d '{"boundingbox": {"bottom": ,"left": ,"right": ,"top": },\ "geodata": {"id": "id_of_geodata_resource"},"name": "<developer_name_for_map>",\ "label": "<display_label_for_map>","projection": "equirectangular"}' \ -F "geodatafile=@yourgeonjsonfile.json" \ -X POST \ \ -H 'Authorization: OAuth Oauth Token' Example Response Body { } "boundingbox": { "bottom": , "left": , "right": , "top": }, "createdby": { "id": "005G KRG3IAO", "name": "Anand B Narasimhan" }, "createddate": " T13:18:53.000Z", "geodata": { "id": "05oP BIAQ", "label": "PA_Territories", "name": "PA_Territories", "type": "geojson", "url": "/services/data/v/eclair/geodata/05op biaq/file" }, "id": "05pP aIAA", "label": "map_label", "name": "map_name", "projection": "equirectangular", "url": "/services/data/v/eclair/maps/05pp aiaa" Charts Maps Resource Get, update, or delete a specific map. Resource URL /eclair/maps/<id> Formats JSON 16

21 Charts Maps Resource HTTP Methods DELETE GET PATCH GET Response Body Map boundingbox BoundingBox The bounding box of the geo map Small, createdby User The creator of the map Small, createddate Date The date when this map was created Small, geodata GeoData The geo data of the map Small, id The 18 character user ID Small, label The label of the map Small, name The name of the map Small, namespace The namespace of the map Small, projection ConnectEclairMap Projection Enum The projection used by the map (AlbersUSA, Equirectangular, or Mercator) Small, url The url to the map representation Small, PATCH Request Parameters Parameter Name geomapobject Object (MapInput) List of all relevant information about the map, i.e. { "label": "My Map" }. PATCH Request Body MapInput boundingbox MapBoundingBox Input Sets the Map bounding box. 17

22 Datasets List Resource geodata AssetReference Input Sets the parent GeoData. label Sets the Map label. name Sets the Map name projection ConnectEclairMap Projection Enum Sets the Map projection (AlbersUSA, Equirectangular, or Mercator) PATCH Response Body Map boundingbox BoundingBox The bounding box of the geo map Small, createdby User The creator of the map Small, createddate Date The date when this map was created Small, geodata GeoData The geo data of the map Small, id The 18 character user ID Small, label The label of the map Small, name The name of the map Small, namespace The namespace of the map Small, projection ConnectEclairMap Projection Enum The projection used by the map (AlbersUSA, Equirectangular, or Mercator) Small, url The url to the map representation Small, Datasets List Resource Returns a list of Wave Analytics datasets. You can filter the results to include only those datasets that have a current dataset version defined by using the hascurrentonly parameter. You can also request supplemental information about datasets that have a current dataset version defined by using the filtergroup parameter. For example, the following GET request sets these parameters: /wave/datasets?hascurrentonly=true&filtergroup=supplemental 18

23 Datasets List Resource This request filters the list of datasets and adds the following supplemental fields to the output representation: currentcreatedby currentcreateddate currentlastmodifiedby currentlastmodifieddate For more information about the filtergroup parameter, see Specifying Response Sizes in the Chatter REST API Developer Guide. Resource URL /wave/datasets Formats JSON HTTP Methods GET GET Request Parameters Parameter Name folderid ID Filters the results to include only the contents of a specific folder. Can be the requesting user s ID for items in the user s private folder. hascurrentonly Filters the list of datasets to include only those datasets that have a current version. The default is false. page A generated token that indicates the view of datasets to be returned. pagesize Int Number of items to be returned in a single page. Minimum is 1, maximum is 200, and default is 25. q Search terms. Individual terms are separated by spaces. Wild cards aren t supported. sort Enum Sort order of the results. Values are: LastModified Mru: Most recently used (last viewed date) Name The default value is Mru. 19

24 Dataset Resource GET Response Body datasets Dataset Resource on page 21[] List of datasets available to the current user. Small, nextpageurl The URL to retrieve the next page of contents in the collection. Small, totalsize The total count of the elements in the collection, including all pages. Medium, url The URL to retrieve the collection. Small, Example Response Body { } "datasets" : [ "/* Datasets detail omitted for brevity. */" ], "nextpageurl" : "/services/data/v/wave/datasets?page=eyjwywdlu2l6zsi6mjusinnv", "totalsize" : 33, "url" : "/services/data/v/wave/datasets" Dataset Resource Returns the Wave Analytics dataset with the specified ID, deletes a dataset (DELETE), or updates a dataset (PATCH). Resource URL /wave/datasets/<dataset ID> Formats JSON HTTP Methods GET, DELETE, and PATCH PATCH Request Body DatasetInput currentid ID The 18-character ID of the current version of this dataset. description The description of the dataset. 20

25 Dataset Resource folder ID The 18-character ID of the folder that contains the dataset. For example: "folder": { "id":"005xx000001swtwaa0" } To patch the folder, you must have edit access to the current and new folders. label The label of the dataset. name The name of the dataset. Note: Patching of developer names for datasets is not allowed. Dataflows reference datasets by using their developer names, and changing names can lead to broken dataflows. userxmd XmdInput User XMD associated with this dataset. GET and PATCH Response Body Dataset Filter Group and assetsharingurl The URL for opening this asset in the Wave builder. This is a form of deep linking. The server examines the link parameters, which might include url, assetid, orgid, and loginhost, as well as other optional parameters, and translates as necessary to produce the correct result on the target client. For example, it will open the wave dashboard on desktop clients, or mobile if you are on a mobile OS. For example, the shared URL: Small, application/ 005xx000001SvSwAAK? url=sharing& orgid=00dt dpvc& loginhost=https%3a%2f%2f test.my.salesforce.com 21

26 Dataset Resource Filter Group and Might produce the following web Url: explore.apexp#application/ 005xx000001SvSwAAK Or it might produce the following Url on ios: com.salesforce.kona:// application/ 005xx000001SvSwAAK& orgid=00dt dpvc& loginhost=https%3a%2f%2f test.my.salesforce.com createdby Wave User The creator of the dataset. Small, createddate Date The time at which the dataset was created, in ISO8601 date format. Small, currentcreatedby Wave User The creator of the current version of the dataset. Only returned if the filtergroup input parameter is set to Supplemental. Supplemental, currentcreateddate Date The time at which the current version of the dataset was created, in ISO8601 date format. Only returned if the filtergroup input parameter is set to Supplemental. Supplemental, currentid ID The 18-character ID of the current dataset version. Small, currentlastmodifiedby Wave User The user who last updated the current version of the dataset. Only returned if the filtergroup input parameter is set to Supplemental. Supplemental, currentlastmodifieddate Date The last time the current version of the dataset was modified, in ISO8601 date format. Only returned if the filtergroup input parameter is set to Supplemental. Supplemental, currenturl The URL for the current dataset version. Small, description Short description of the asset. Small, 22

27 Dataset Resource Filter Group and folder Asset Reference A reference to the folder in which this dataset is stored. Small, id ID The 18-character ID of the dataset. Small, label The label of the dataset. Small, lastquerieddate Date Date/time when this dataset was last queried. Small, lastaccesseddate Date The last time the dataset was accessed, in ISO8601 date format. Small, lastmodifiedby Wave User The user who last updated the dataset. Small, lastmodifieddate Date The last time the dataset was modified, in ISO8601 date format. Small, name The dataset name. Small, namespace The namespace of the Asset. Small, permissions Permissions The permissions for the current user. Small, type The asset type. For datasets, the value is dataset. Small, url The URL to the resource for the dataset. Small, userxmd Xmd on page 30 Reference to the associated user xmd (if any). Medium, versionsurl The URL for dataset versions. Small, Wave User id ID The 18-character user ID. Small, name The name of the user. Small, profilephotourl The Chatter profile photo of the user. Small, 23

28 Dataset Resource Permissions manage Indicates whether a user can manage access control on an asset. Small, modify Indicates whether a user can modify an asset. Small, view Indicates whether a user can view an asset. Small, AssetReference id The 18 character ID of the asset. Small, label The asset label. Small, name The asset developer name. Small, namespace The namespace that qualifies the asset name Small, url The asset URL. Small, Example Response Body { "createdby" : { "id" : "005D LSoIAM", "name" : "User Name", "profilephotourl" : " }, "createddate" : " T20:27:34.000Z", "currentid" : "0FcD KAA", "currenturl" : "/services/data/v/wave/datasets/0fbd hukaa/versions/0fcd kaa", "folder": { "id":"005xx000001swtwaa0" }, "id" : "0FbD huKAA", "label" : "OppHistory", "lastaccesseddate" : " T18:31:00Z", "lastmodifiedby" : { "id" : "005D LT8IAM", "name" : "Integration User", "profilephotourl" : "" }, 24

29 s List Resource } "lastmodifieddate" : " T20:27:44.000Z", "name" : "OppHistory", "permissions" : { "modify" : true, "view" : true }, "type" : "dataset", "url" : "/services/data/v/wave/datasets/0fbd hukaa" s List Resource Returns a collection of dataset versions for a particular dataset. Resource URL /wave/datasets/<dataset ID>/versions Formats JSON HTTP Methods GET GET Response Body url The URL to retrieve the collection. Small, versions Dataset [] The collection of dataset versions for a particular dataset. Small, Example Response Body { "url" : "/services/data/v/wave/datasets/0fb ftcai/versions", "versions" : [ { "createdby" : { "id" : " DhrEAAS", "name" : "Integration User", "profilephotourl" : " }, "createddate" : " T23:19:33.000Z", "dataset" : { "id" : "0Fb FtCAI", "url" : "/services/data/v/wave/datasets/0fb ftcai" }, "files" : [ ], 25

30 Resource "id" : "0Fc VOCAY", "lastmodifiedby" : { "id" : " DhrEAAS", "name" : "Integration User", "profilephotourl" : " }, "lastmodifieddate" : " T23:19:49.000Z", "permissions" : { "modify" : true, "view" : true }, "type" : "datasetversion", "url" : "/services/data/v/wave/datasets/0fb ftcai/versions/0fc vocay", "xmdsurl" : "/services/data/v/wave/datasets/0fb ftcai/versions/0fc vocay/xmds" } } ] Resource Returns a Wave Analytics dataset version (GET), or updates the predicate (PATCH). Resource URL /wave/datasets/<dataset ID>/versions/<version ID> Formats JSON HTTP Methods GET and PATCH GET and PATCH Response Body createdby Wave User The creator of the dataset. Small, createddate Date The time at which the dataset was created, in ISO8601 date format. Small, dataset Dataset Reference A reference to the dataset. Small, files WaveFileMetadata [] List of information about the data files that make up the dataset version. Medium, id ID The 18-character dataset ID. Small, lastmodifiedby Wave User The user who last updated the dataset. Small, 26

31 Resource lastmodifieddate Date The last time the dataset was modified, in ISO8601 date format. Small, permissions Permissions The permissions for the current user. Small, predicate The row-level security predicate. Only returned if the predicate is set in the input request. Small, predicate Double The version of the row-level security predicate. Only returned if the predicate is set in the input request. Small, sharingenabled Whether Sharing rules are enabled for this dataset version. Small, type The asset type. For dataset versions, the value is datasetversion. Small, filesurl The URL of the files resource for this dataset version. Small, xmdmain XMD The extended metadata (XMD) for this dataset version. Medium, xmdsurl The URL of the XMD collection resource for this dataset version. Small, Dataset Reference id ID The 18-character ID of the dataset. Small, url The URL of the dataset. Small, Example Response Body { "createdby" : { "id" : "005D VHeYIAW", "name" : "Integration User", "profilephotourl" : " }, "createddate" : " T20:17:54.000Z", "dataset" : { "id" : "0FbD CoMKAU", "url" : "/services/data/v/wave/datasets/0fbd comkau" }, 27

32 File Resource "files" : [ ], "id" : "0FcD DRyKAM", "lastmodifiedby" : { "id" : "005D VHeYIAW", "name" : "Integration User", "profilephotourl" : " }, "lastmodifieddate" : " T20:18:14.000Z", "permissions" : { "modify" : true, "view" : true }, "type" : "datasetversion", "url" : "/services/data/v/wave/datasets/0fbd comkau/versions/0fcd drykam" } PATCH Request Body iscomplete Indicates whether the Dataset is complete predicate The row level security predicate to be applied to this Dataset. sharingenabled Whether sharing rules should be on the dataset version totalrows The total number of rows that make up the Dataset Example Request Body { } "predicate" : "<predicate value>" PATCH Response Body Dataset File Resource Provides access to the binary content of the dataset file. Note: This resource is accessible only to administrators with the Manage Wave Analytics user permission. Resource URL /wave/datasets/<dataset ID>/versions/<version ID>/files/<file ID> 28

33 XMD List Resource Formats JSON HTTP Methods GET GET Response Body Returns the binary content of the dataset file. XMD List Resource Returns a list of XMD resources for a version of a dataset. Resource URL /wave/datasets/<dataset ID>/versions/<version ID>/xmds Formats JSON HTTP Methods GET GET Response Body url The location of the XMD collection. Small, xmds XMD Metadata[] The list of XMD resources. Small, XMD Metadata type The type of XMD. Values are: Small, main system user url The location of this XMD. Small, 29

34 XMD Resource Example Response Body { "url" : "/services/data/v/wave/datasets/0fb ftcai/versions/0fc vocay/xmds", "xmds" : [ { "type" : "main", "url" : "/services/data/v/wave/datasets/0fb ftcai/versions/0fc vocay/xmds/main" }, { "type" : "user", "url" : "/services/data/v/wave/datasets/0fb ftcai/versions/0fc vocay/xmds/user" }, { "type" : "system", "url" : "/services/data/v/wave/datasets/0fb ftcai/versions/0fc vocay/xmds/system" } } ] XMD Resource Returns the extended metadata (XMD) for a version of a dataset (GET) and replaces the user XMD file (PUT). Resource URL /wave/datasets/<dataset ID>/versions/<version ID>/xmds/main /wave/datasets/<dataset ID>/versions/<version ID>/xmds/system /wave/datasets/<dataset ID>/versions/<version ID>/xmds/user Formats JSON HTTP Methods GET and PUT (on /wave/datasets/<dataset ID>/versions/<version ID>/xmds/user only) GET Response Body Filter Group and createdby Wave User The creator of the XMD. Small, createddate Date The time at which the XMD was created, in ISO8601 date format. Small, 30

35 XMD Resource Filter Group and dates XMD Date[] A list of dates with formatting information. Small, deriveddimensions XMD Dimension[] A list of derived dimensions with formatting information. Small, derivedmeasures XMD Measure[] List of derived measures with formatting information. Small, dimensions XMD Dimension[] List of dimensions with formatting information. Small, errormessage Message if there was error copying forward the current version's user XMD to the newly created version. Small, language The language in which this XMD is localized. Values are: Small, bg: Bulgarian zh_cn: Chinese Simplified zh_tw: Chinese Traditional hr: Croatian cs: Czech da: Danish nl_nl: Dutch en: English en_gb: English (United Kingdom) fi: Finnish fr: French de: German el: Greek hu: Hungarian in: Indonesian it: Italian ja: Japanese ko: Korean no: Norwegian pl: Polish pt_pt: Portuguese (Portugal) pt_br: Portuguese (Brazil) ro: Romanian 31

36 XMD Resource Filter Group and ru: Russian sk: Slovak sl: Slovenian es: Spanish es_mx: Spanish (Mexico) sv: Swedish th: Thai tr: Turkish uk: Ukrainian vi: Vietnamese lastmodifiedby Wave User The user who last updated the XMD. Small, lastmodifieddate Date The last time the XMD was modified, in ISO8601 date format. Small, measures XMD Measure[] List of measures with formatting information. Small, organizations XMD Organization[] List of organizations for multi-organization support. Small, showdetailsdefault Fields [] Ordered list of dimensions and measures. The list defines the default order in which to show the dimensions and measures in the user interface. Small, type The type of XMD. Values are: Small, main system user url The location where this XMD is stored. Small, XMD Date Filter Group and alias Alias of the Date column. Small, fields XMD Date Field Formatting information for the date fields. Small, 32

37 XMD Resource Filter Group and firstdayofweek What the first day of the week is. Small, fiscalmonthoffset Offset number of months for the fiscal year in relation to the calendar year. Small, fullyqualifiedname Fully qualified name of the date. Small, label Label of the Date column. Small, XMD Date Field day The day field. Small, epochday The epoch day field. Small, epochsecond The epoch second field. Small, fiscalmonth The fiscal month field. Small, fiscal Quarter The fiscal quarter field. Small, fiscalweek The fiscal week field. Small, fiscalyear The fiscal year field. Small, fullfield The full-field field. Small, hour The hour field. Small, minute The minute field. Small, month The month field. Small, quarter The quarter field. Small, second The second field Small, week The week field. Small, year The year field. Small, 33

38 XMD Resource XMD Dimension Filter Group and field The field name of the dimension (used in queries). Small, label The label for the dimension. Small, linktemplate The template for formatting a link. Small, linktemplateenabled Indicates whether the dimension has link templates enabled. Small, linktooltip The tooltip to be displayed for links. Small, members XMD Dimension Member[] The member overrides for a dimension. Small, recorddisplayfields [] Ordered list of dimensions and measures. The list defines the default order to in which to display the dimensions and measures in the user interface. Small, recordidfield The record ID for this dimension. Small, recordorganizationid Field The record organization ID for this dimension. Small, salesforceactions XMD Dimension Salesforce Action[] Salesforce actions linked to this dimension. Small, salesforceactions Enabled Indicates whether the dimension has Salesforce actions enabled. Small, showinexplorer Indicates whether the dimension is displayed in the explorer. Small, XMD Dimension Member color The color for the member. Small, label The label for the member. Small, member The member value. Small, 34

39 XMD Resource XMD Dimension Salesforce Action enabled Indicates whether the action is enabled for a specific dimension. Small, name The name of the action. Small, XMD Measure Filter Group and field The field name of the measure (used in queries). Small, format XMD Measure Format The format details for the measure. Small, label The label for the measure. Small, showinexplorer Indicates whether the measure is displayed in the explorer. Small, XMD Measure Format Filter Group and customformat The original (XMD 1.1) format array as a single string. Small, unitmultiplier Double The multiplier for the unit. Small, XMD Organization id The ID of the organization. Small, instanceurl The instance URL for the organization. Small, label The label for the organization. Small, 35

40 XMD Resource PUT Request Body dataset XmdDatasetInput Locale-specific information about the Dataset represented by this XMD. dates XmdDateInput [] List of dates with formatting information. derived Dimensions XmdDerived DimensionInput [] List of derived dimensions with formatting information. derived Measures XmdDerived MeasureInput [] List of derived measures with formatting information. dimensions XmdDimension Input [] List of dimensions with formatting information. measures XmdMeasureInput [] List of measures with formatting information. organizations XmdOrganization Input [] List of organizations for multi-organization support. showdetails DefaultFields [] Ordered list of Dimensions and Measures. Represents the default order to show them in the UI. XmdDatasetInput connector Connector source for the dataset. description of the dataset. fully QualifiedName Fully qualified name of the dataset version. origin Origin representing where this dataset version comes from. 36

41 XMD Resource XmdDateInput alias Alias of the Date column. fields XmdDateFieldsInput Formatting information for the date fields. firstdayof Week What the first day of the week is. fiscalmonth Offset Offset number of months for the fiscal year in relation to the calendar year. fullyqualifiedname Fully qualified name of the date. label Label of the Date column. XmdDateFieldsInput day day field. epochday epochday field. epochsecond epochsecond field. fiscalmonth fiscalmonth field. fiscalquarter fiscalquarter field. fiscalweek fiscalweek field. fiscalyear fiscalyear field. fullfield fullfield field. hour hour field. minute minute field. month month field. quarter quarter field. second second field. week week field. year year field. 37

42 XMD Resource XmdDerivedDimensionInput members XmdDerived DimensionMember Input [] Member overrides for a Derived Dimension. salesforce Actions XmdDerived Dimension SalesforceAction Input [] Salesforce Actions linked to this Derived Dimension. XmdDerivedDimensionMemberInput color Color for the member. label Label for the member. member Member value. XmdDerivedDimensionSalesforceActionInput enabled Whether the Action is enabled. name Name of the action. XmdDerivedMeasureInput format XmdDerived MeasureFormat Input Format details for the Derived Measure. field Field name of the Measure (used in queries). label Label for the Measure. 38

43 XMD Resource showin Explorer Whether the Measure should be shown in the Explorer. XmdDerivedMeasureFormatInput customformat Displays the original XMD 1.1 format array as a. unit Multiplier Double Multiplier for the unit. XmdDimensionInput field Field name of the Dimension (used in queries). label Label for the Dimension. linktemplate Template for formatting a Link. linktemplateenabled Whether the Dimension has link templates enabled. linktooltip Tooltip to be displayed for links. members XmdDimension MemberInput [] Member overrides for a Dimension. recorddisplayfields [] Ordered list of Dimensions and Measures. Represents the default order to show them in the UI. recordidfield Record Id for this dimension. recordorganizationidfield Record Organization Id for this dimension. salesforce Actions XmdDimension SalesforceAction Input [] Salesforce Actions linked to this Dimension. salesforceactionsenabled Whether the Dimension has salesforce actions enabled. 39

44 XMD Resource showinexplorer Whether the Dimension should be shown in the Explorer. XmdDimensionMemberInput color Color for the member. label Label for the member. member Member value. XmdDimensionSalesforceActionInput enabled Whether the Action is enabled. name Name of the action. XmdDimensionInput field Field name of the Dimension (used in queries). label Label for the Dimension. linktemplate Template for formatting a Link. linktemplate Enabled Whether the Dimension has link templates enabled. linktooltip Tooltip to be displayed for links. members XmdDimension MemberInput [] Member overrides for a Dimension. recorddisplay Fields [] Ordered list of Dimensions and Measures. Represents the default order to show them in the UI. recordidfield Record Id for this dimension. 40

45 XMD Resource record Organization IdField Record Organization Id for this dimension. salesforce Actions XmdDimension SalesforceAction Input [] Salesforce Actions linked to this Dimension. salesforce Actions Enabled Whether the Dimension has Salesforce actions enabled. showin Explorer Whether the Dimension should be shown in the Explorer. XmdMeasureInput format XmdMeasureFormat Input Format details for the Measure. field Field name of the Measure (used in queries). label Label for the Measure. showin Explorer Whether the Measure should be shown in the Explorer. XmdMeasureFormatInput customformat Displays the original XMD 1.1 format array as a. unit Multiplier Double Multiplier for the unit. 41

46 Lenses List Resource XmdOrganizationInput id ID ID of the organization. instanceurl Instance Url for the organization. label Label for the organization. Lenses List Resource Returns a list of Wave Analytics lenses (GET), or creates a lens (POST). Resource URL /wave/lenses Formats JSON HTTP Methods GET and POST GET Request Parameters Parameter Name folderid ID Filters the results to include only the contents of a specific folder. Can be the requesting user s ID for items in the user s private folder. page A generated token that indicates the view of the lenses to be returned. pagesize Int Number of items to be returned in a single page. Minimum is 1, maximum is 200, and default is 25. q Search terms. Individual terms are separated by spaces. Wild cards aren t supported. For example, if you have lenses with the following names: Opportunities_Created_2010 Opportunities_Created_

Analytics REST API Developer Guide

Analytics REST API Developer Guide Analytics REST API Developer Guide Salesforce, Winter 18 @salesforcedocs Last updated: November 2, 2017 Copyright 2000 2017 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark

More information

Wave Analytics Extended Metadata (XMD) Reference

Wave Analytics Extended Metadata (XMD) Reference Wave Analytics Extended Metadata (XMD) Reference Salesforce, Winter 17 @salesforcedocs Last updated: November 4, 2016 Copyright 2000 2016 salesforce.com, inc. All rights reserved. Salesforce is a registered

More information

Analytics Extended Metadata (XMD) Reference

Analytics Extended Metadata (XMD) Reference Analytics Extended Metadata (XMD) Reference Salesforce, Spring 18 @salesforcedocs Last updated: February 7, 2018 Copyright 2000 2018 salesforce.com, inc. All rights reserved. Salesforce is a registered

More information

Salesforce IoT REST API Getting Started Guide

Salesforce IoT REST API Getting Started Guide Salesforce IoT REST API Getting Started Guide Version 42.0, Spring 18 @salesforcedocs Last updated: March 9, 2018 Copyright 2000 2018 salesforce.com, inc. All rights reserved. Salesforce is a registered

More information

Rescue Lens Administrators Guide

Rescue Lens Administrators Guide Rescue Lens Administrators Guide Contents About Rescue Lens...4 Rescue Lens Administration Center At a Glance...4 LogMeIn Rescue Lens System Requirements...4 About Rescue Lens in a Multilingual Environment...5

More information

USER GUIDE PUBLIC Document Version: SAP Translation Hub SAP SE or an SAP affiliate company. All rights reserved.

USER GUIDE PUBLIC Document Version: SAP Translation Hub SAP SE or an SAP affiliate company. All rights reserved. USER GUIDE PUBLIC Document Version: 1807 2018-08-22 2018 SAP SE or an SAP affiliate company. All rights reserved. THE BEST RUN Content 1.... 4 1.1 What's New for.... 4 Release Notes - 2017....8 1.2 Getting

More information

Oracle. Talent Acquisition Cloud Using Scheduling Center. 17 (update 17.4)

Oracle. Talent Acquisition Cloud Using Scheduling Center. 17 (update 17.4) Oracle Talent Acquisition Cloud 17 (update 17.4) Part Number: E93807-01 Copyright 2018, Oracle and/or its affiliates. All rights reserved Authors: OTAC Information Development Team This software and related

More information

Oracle Access Manager

Oracle Access Manager Oracle Access Manager Addendum to Release Notes 10g (10.1.4.0.1) January 2007 This document is an addendum to the Release Notes for Oracle Access Manager 10g (10.1.4.0.1). It contains the following sections:

More information

DeskApp Admin Manual. Release 1.0 final. Kopano

DeskApp Admin Manual. Release 1.0 final. Kopano DeskApp Admin Manual Release 1.0 final Kopano Feb 21, 2018 Contents 1 Introduction 2 2 System requirements 3 2.1 WebApp............................................... 3 2.2 Operating system...........................................

More information

Localizing Intellicus. Version: 7.3

Localizing Intellicus. Version: 7.3 Localizing Intellicus Version: 7.3 Copyright 2015 Intellicus Technologies This document and its content is copyrighted material of Intellicus Technologies. The content may not be copied or derived from,

More information

Transfer Manual Norman Endpoint Protection Transfer to Avast Business Antivirus Pro Plus

Transfer Manual Norman Endpoint Protection Transfer to Avast Business Antivirus Pro Plus Transfer Manual Norman Endpoint Protection Transfer to Avast Business Antivirus Pro Plus Summary This document outlines the necessary steps for transferring your Norman Endpoint Protection product to Avast

More information

CONTENT. ANALYST OPINION INDICATOR for MT4. Set up & Configuration Guide. Description 1 Subscribing to TRADING CENTRAL feed 1 Installation process 1

CONTENT. ANALYST OPINION INDICATOR for MT4. Set up & Configuration Guide. Description 1 Subscribing to TRADING CENTRAL feed 1 Installation process 1 ANALYST OPINION INDICATOR for MT4 Set up & Configuration CONTENT Description 1 Subscribing to TRADING CENTRAL feed 1 Installation process 1 Indicator's use and set up 4 Features and parameters 5 Upgrade

More information

Formatting Custom List Information.

Formatting Custom List Information. Hello. MailChimp has a lot of great merge tags that can help you customize your email campaigns. You can use MailChimp s merge tags to dynamically add content to your email. Include something as simple

More information

Transfer Manual Norman Endpoint Protection Transfer to Avast Business Antivirus Pro Plus

Transfer Manual Norman Endpoint Protection Transfer to Avast Business Antivirus Pro Plus Transfer Manual Norman Endpoint Protection Transfer to Avast Business Antivirus Pro Plus Summary This document outlines the necessary steps for transferring your Norman Endpoint Protection product to Avast

More information

2. bizhub Remote Access Function Support List

2. bizhub Remote Access Function Support List 2. bizhub Remote Access Function Support List MFP Function Support List for bizhub Remote Access Basic s MFP model Firmware v C754/ C654/ C754e/ C654e 754/ 654 C554/ C454/ C364/ C284/ C224 (*5) A1610Y

More information

AhsayUBS Installation Guide on HP ProLiant MicroServer Gen8

AhsayUBS Installation Guide on HP ProLiant MicroServer Gen8 AhsayUBS Installation Guide on HP V1.0 Ahsay Systems Corporation Limited 1 June 2015 AhsayUBS Installation Guide on HP ProLiant MircoServer Gen8 Copyright Notice 2015 Ahsay Systems Corporation Limited

More information

krones Academy - media suite User guide

krones Academy - media suite User guide krones Academy - media suite User guide krones Academy Beispieltext media suite Login. Enter the following website address in the Internet Explorer: http://academy.krones.com. Enter login name and password.

More information

Virtual Blade Configuration Mode Commands

Virtual Blade Configuration Mode Commands Virtual Blade Configuration Mode Commands To configure virtual blades on a WAE device, use the virtual-blade global configuration command. To disable a virtual blade, use the no form of this command. virtual-blade

More information

ADOBE READER AND ACROBAT 8.X AND 9.X SYSTEM REQUIREMENTS

ADOBE READER AND ACROBAT 8.X AND 9.X SYSTEM REQUIREMENTS ADOBE READER AND ACROBAT 8.X AND 9.X SYSTEM REQUIREMENTS Table of Contents OVERVIEW... 1 Baseline requirements beginning with 9.3.2 and 8.2.2... 2 System requirements... 2 9.3.2... 2 8.2.2... 3 Supported

More information

Installation process Features and parameters Upgrade process... 6

Installation process Features and parameters Upgrade process... 6 Content Installation process... 1 Features and parameters... 4 Upgrade process... 6 Installation process The latest version of our Indicator can be downloaded from here http://www.tradingcentral.com/install_trading_central_indicator_for_metatrader/setup.exe

More information

DocuSign Service User Guide. Information Guide

DocuSign Service User Guide. Information Guide Information Guide 1 DocuSign Service User Guide 1 Copyright 2003-2013 DocuSign, Inc. All rights reserved. For information about DocuSign trademarks, copyrights and patents refer to the DocuSign Intellectual

More information

CRM On Demand. Oracle CRM On Demand REST API Developer s Guide

CRM On Demand. Oracle CRM On Demand REST API Developer s Guide CRM On Demand Oracle CRM On Demand REST API Developer s Guide Release 27 October 2014 Copyright 2005, 2014 Oracle. All rights reserved. This software and related documentation are provided under a license

More information

Click-to-Call (Web RTC)

Click-to-Call (Web RTC) Click-to-Call (Web RTC) Admin Guide 27 September 2018 Contents Click-to-Call and StarLeaf Cloud 3 Browser support for Click-to-Call 3 Chrome 3 Internet Explorer 3 Firefox 4 Safari 4 Content share for browser-based

More information

Hik-Connect Mobile Client

Hik-Connect Mobile Client Hik-Connect Mobile Client SPEC V3.6.3 Name: Hik-Connect Mobile Client Software Version: V3.6.3 Android: System Requirement: Android 4.1 or Above ios: System Requirement: ios 8.0 or Above Software Information

More information

Integrate Salesforce. EventTracker v8.x and above

Integrate Salesforce. EventTracker v8.x and above EventTracker v8.x and above Publication Date: March 27, 2019 Abstract This guide provides instructions to configure Salesforce, to report its logs to EventTracker Enterprise. Scope The configurations detailed

More information

Google Search Appliance

Google Search Appliance Google Search Appliance Search Appliance Internationalization Google Search Appliance software version 7.2 and later Google, Inc. 1600 Amphitheatre Parkway Mountain View, CA 94043 www.google.com GSA-INTL_200.01

More information

Analytics Platform Setup Guide

Analytics Platform Setup Guide Salesforce, Summer 18 @salesforcedocs Last updated: August 23, 2018 Copyright 2000 2018 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark of salesforce.com, inc., as are other

More information

QUICK REFERENCE GUIDE: SHELL SUPPLIER PROFILE QUESTIONNAIRE (SPQ)

QUICK REFERENCE GUIDE: SHELL SUPPLIER PROFILE QUESTIONNAIRE (SPQ) QUICK REFERENCE GUIDE: SHELL SUPPLIER PROFILE QUESTIONNAIRE (SPQ) July 2018 July 2018 1 SPQ OVERVIEW July 2018 2 WHAT IS THE SHELL SUPPLIER PROFILE QUESTIONNAIRE? Shell needs all potential and existing

More information

LiveEngage System Requirements and Language Support Document Version: 5.0 February Relevant for LiveEngage Enterprise In-App Messenger SDK v2.

LiveEngage System Requirements and Language Support Document Version: 5.0 February Relevant for LiveEngage Enterprise In-App Messenger SDK v2. LiveEngage System Requirements and Language Support Document Version: 5.0 February 2017 Relevant for LiveEngage Enterprise In-App Messenger SDK v2.0 Introduction The LiveEngage platform aims to provide

More information

Install the Clients. Install Cisco Jabber for Windows. Use the Command Line. Before You Begin

Install the Clients. Install Cisco Jabber for Windows. Use the Command Line. Before You Begin Install Cisco Jabber for Windows, page 1 Install Cisco Jabber for Mac, page 22 Install Cisco Jabber Mobile Clients, page 23 Install Cisco Jabber for Windows Cisco Jabber for Windows provides an MSI installation

More information

Analytics External Data API Developer Guide

Analytics External Data API Developer Guide Analytics External Data API Developer Guide Salesforce, Spring 18 @salesforcedocs Last updated: February 7, 2018 Copyright 2000 2018 salesforce.com, inc. All rights reserved. Salesforce is a registered

More information

Mobile Procurement REST API (MOBPROC): Access Tokens

Mobile Procurement REST API (MOBPROC): Access Tokens Mobile Procurement REST API (MOBPROC): Access Tokens Tangoe, Inc. 35 Executive Blvd. Orange, CT 06477 +1.203.859.9300 www.tangoe.com TABLE OF CONTENTS HOW TO REQUEST AN ACCESS TOKEN USING THE PASSWORD

More information

LiveEngage System Requirements and Language Support Document Version: 5.6 May Relevant for LiveEngage Enterprise In-App Messenger SDK v2.

LiveEngage System Requirements and Language Support Document Version: 5.6 May Relevant for LiveEngage Enterprise In-App Messenger SDK v2. LiveEngage System Requirements and Language Support Document Version: 5.6 May 2017 Relevant for LiveEngage Enterprise In-App Messenger SDK v2.3 Introduction The LiveEngage platform aims to provide the

More information

LiveEngage System Requirements and Language Support Document Version: 6.4 March 2018

LiveEngage System Requirements and Language Support Document Version: 6.4 March 2018 LiveEngage System Requirements and Language Support Document Version: 6.4 March 2018 Introduction The LiveEngage platform aims to provide the best engagement experiences for consumers and brands. To do

More information

Hik-Connect Client Software V (Android) V (iOS) Release Notes ( )

Hik-Connect Client Software V (Android) V (iOS) Release Notes ( ) Hik-Connect Client Software V3.1.0 0828(Android) V3.1.0 170830(iOS) Release Notes (2017-09-07) Hik-Connect Version 3.1.0: Optimize Login Page Hik-Connect account and email address are displayed default,

More information

Lionbridge ondemand for Adobe Experience Manager

Lionbridge ondemand for Adobe Experience Manager Lionbridge ondemand for Adobe Experience Manager Version 1.1.0 Configuration Guide October 24, 2017 Copyright Copyright 2017 Lionbridge Technologies, Inc. All rights reserved. Published in the USA. March,

More information

CRM On Demand. Oracle CRM On Demand REST API Developer s Guide

CRM On Demand. Oracle CRM On Demand REST API Developer s Guide CRM On Demand Oracle CRM On Demand REST API Developer s Guide Release 28 March 2015 Copyright 2005, 2015 Oracle. All rights reserved. This software and related documentation are provided under a license

More information

LogMeIn Rescue Administrators Guide

LogMeIn Rescue Administrators Guide LogMeIn Rescue Administrators Guide Contents About LogMeIn Rescue...6 LogMeIn Rescue Components...6 Administration Center At a Glance...6 Technician Console At a Glance...6 Command Center At a Glance...7

More information

KYOCERA Quick Scan v1.0

KYOCERA Quick Scan v1.0 KYOCERA Quick Scan v1.0 Software Information PC Name Version 0731 July 31, 2018 KYOCERA Document Solutions Inc. Product Planning Division 1 Table of Contents 1. Overview... 4 1.1. Background... 4 1.2.

More information

Analytics Data Integration Guide

Analytics Data Integration Guide Analytics Data Integration Guide Salesforce, Summer 18 @salesforcedocs Last updated: July 30, 2018 Copyright 2000 2018 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark of

More information

Analytics Platform Setup Guide

Analytics Platform Setup Guide Salesforce, Spring 18 @salesforcedocs Last updated: February 22, 2018 Copyright 2000 2018 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark of salesforce.com, inc., as are

More information

User guide on how to generate PDF versions of the product information - veterinary

User guide on how to generate PDF versions of the product information - veterinary 03 February 2011 EMA/793983/2010 v.1.0 Patient Health Protection User guide on how to generate PDF versions of the product information - veterinary Introduction Since the product information consists of

More information

Oracle. Engagement Cloud Using Knowledge in Engagement Cloud. Release 13 (update 18B)

Oracle. Engagement Cloud Using Knowledge in Engagement Cloud. Release 13 (update 18B) Oracle Engagement Cloud Using Knowledge in Engagement Cloud Release 13 (update 18B) Release 13 (update 18B) Part Number E96141-06 Copyright 2011-2018, Oracle and/or its affiliates. All rights reserved.

More information

Package and Distribute Your Apps

Package and Distribute Your Apps Package and Distribute Your Apps Salesforce, Summer 17 @salesforcedocs Last updated: August 9, 2017 Copyright 2000 2017 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark of

More information

Standardized PartnerAccess Feed

Standardized PartnerAccess Feed Standardized PartnerAccess Feed User Manual Ver.5 Last modified on Wednesday, August 01, 2012 CNET Content Solutions, DataSource, ChannelOnline, Intelligent Cross- Sell, and PartnerAccess are trademarks

More information

TruVision 12/32 Series IP Camera Firmware V7.1 Release Notes

TruVision 12/32 Series IP Camera Firmware V7.1 Release Notes TruVision 12/32 Series IP Camera Firmware V7.1 Release Notes P/N 1073169-EN REV A ISS 08AUG16 Introduction These are the TruVision 12/32 Series IP Camera Firmware V7.1 Release Notes with additional information

More information

Release Notes. Illustra Connect

Release Notes. Illustra Connect Release Notes Illustra Connect Applicable Software Illustra Connect Software Version 3.0 Product Data Visit the Illustra Connect section of our web site http://www.illustracameras.com to download datasheets

More information

REST API: Guide for Implementers

REST API: Guide for Implementers REST API: Guide for Implementers Version 1.03 SP-API-REST-IG-201805--R001.03 Sage 2018. All rights reserved. This document contains information proprietary to Sage and may not be reproduced, disclosed,

More information

SCUtils Survey Lite Trial Installation Guide Solution for Microsoft System Center 2012 Service Manager

SCUtils Survey Lite Trial Installation Guide Solution for Microsoft System Center 2012 Service Manager SCUtils Survey Lite Trial Installation Guide Solution for Microsoft System Center 2012 Service Manager Published: 14 th September 2015 Version: 1.9 Authors: Marat Kuanyshev Feedback: support@scutils.com

More information

Taleo Enterprise Career Section Configuration Guide Release 15B

Taleo Enterprise Career Section Configuration Guide Release 15B Oracle Taleo Enterprise Career Section Configuration Guide Release 15B Taleo Enterprise Part Number: E78983-03 Copyright 2016, Oracle and/or its affiliates. All rights reserved Authors: Taleo Information

More information

Navigate the Admin portal

Navigate the Admin portal Administrators Portal, on page 1 Cisco ISE Internationalization and Localization, on page 9 MAC Address Normalization, on page 15 Admin Features Limited by Role-Based Access Control Policies, on page 16

More information

<Insert Picture Here> Oracle Policy Automation 10.0 Features and Benefits

<Insert Picture Here> Oracle Policy Automation 10.0 Features and Benefits Oracle Policy Automation 10.0 Features and Benefits December 2009 The following is intended to outline our general product direction. It is intended for information purposes only,

More information

Package and Distribute Your Apps

Package and Distribute Your Apps Package and Distribute Your Apps Salesforce, Summer 18 @salesforcedocs Last updated: July 30, 2018 Copyright 2000 2018 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark of

More information

Install the Clients. Install Cisco Jabber for Windows. Install Cisco Jabber for Windows, page 1 Install Cisco Jabber for Mac, page 27

Install the Clients. Install Cisco Jabber for Windows. Install Cisco Jabber for Windows, page 1 Install Cisco Jabber for Mac, page 27 Install Cisco Jabber for Windows, page 1 Install Cisco Jabber for Mac, page 27 Install Cisco Jabber for Windows Cisco Jabber for Windows provides an MSI installation package that you can use in the following

More information

NetIQ Identity Governance

NetIQ Identity Governance NetIQ Identity Governance Identity Reporting Guide February 2018 Contents Accessing Identity Reporting 2 Using the Overview Page 2 Using the Repository Page 3 Using the Import Page 8 Using the Calendar

More information

Perceptive Intelligent Capture Visibility

Perceptive Intelligent Capture Visibility Perceptive Intelligent Capture Visibility Technical Specifications Version: 3.1.x Written by: Product Knowledge, R&D Date: August 2018 2015 Lexmark International Technology, S.A. All rights reserved. Lexmark

More information

Analytics Data Integration Guide

Analytics Data Integration Guide Analytics Data Integration Guide Salesforce, Spring 18 @salesforcedocs Last updated: January 18, 2018 Copyright 2000 2018 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark

More information

RELEASE NOTES UFED ANALYTICS DESKTOP SAVE TIME AND RESOURCES WITH ADVANCED IMAGE ANALYTICS HIGHLIGHTS

RELEASE NOTES UFED ANALYTICS DESKTOP SAVE TIME AND RESOURCES WITH ADVANCED IMAGE ANALYTICS HIGHLIGHTS RELEASE NOTES Version 5.2 September 2016 UFED ANALYTICS DESKTOP HIGHLIGHTS UFED Analytics Desktop version 5.2 serves as your virtual partner, saving precious time in the investigative process. Designed

More information

1 Copyright 2011, Oracle and/or its affiliates. All rights reserved.

1 Copyright 2011, Oracle and/or its affiliates. All rights reserved. 1 Copyright 2011, Oracle and/or its affiliates. All rights reserved. 2 Copyright 2011, Oracle and/or its affiliates. All rights reserved. Oracle E-Business Suite Internationalization and Multilingual Features

More information

Taleo Enterprise Career Section Configuration Guide Release 17

Taleo Enterprise Career Section Configuration Guide Release 17 Oracle Taleo Enterprise Career Section Configuration Guide Release 17 Taleo Enterprise Part Number: E89366-01 Copyright 2017, Oracle and/or its affiliates. All rights reserved Authors: Taleo Information

More information

Using OAuth 2.0 to Access ionbiz APIs

Using OAuth 2.0 to Access ionbiz APIs Using OAuth 2.0 to Access ionbiz APIs ionbiz APIs use the OAuth 2.0 protocol for authentication and authorization. ionbiz supports common OAuth 2.0 scenarios such as those for web server, installed, and

More information

Valitor Salesforce Commerce Cloud SFRA Module

Valitor Salesforce Commerce Cloud SFRA Module Integration Manual SFRA (Storefront Reference Architecture) Valitor Salesforce Commerce Cloud SFRA Module Integrating with Valitor could not be easier. Choose between Hosted, HTTP POST or XML integration

More information

Install the Clients. Install Cisco Jabber for Windows

Install the Clients. Install Cisco Jabber for Windows Install Cisco Jabber for Windows, page 1 Install Cisco Jabber for Mac, page 25 Install Cisco Jabber Mobile Clients, page 26 Install Cisco Jabber for Windows Cisco Jabber for Windows provides an MSI installation

More information

Microsoft Store badge guidelines. October 2017

Microsoft Store badge guidelines. October 2017 Microsoft Store badge guidelines October 2017 Welcome Together we can do amazing things. Millions of fans and thousands of partners and developers across the world empower people and organizations do great

More information

Oracle Policy Automation Release Notes

Oracle Policy Automation Release Notes Oracle Policy Automation 10.1.0 Release Notes Contents Release Overview 2 Oracle Policy Modeling 4 Singleton entities should not be used... 4 InstanceValueIf function... 4 Automatic entity containment...

More information

LogMeIn Rescue Technician Console. User Guide

LogMeIn Rescue Technician Console. User Guide LogMeIn Rescue Technician Console User Guide Contents About LogMeIn Rescue...5 Technician Console At a Glance...5 Administration Center At a Glance...5 Security in LogMeIn Rescue...6 How to Set Up LastPass

More information

Analytics External Data Format Reference

Analytics External Data Format Reference Analytics External Data Format Reference Salesforce, Spring 18 @salesforcedocs Last updated: January 11, 2018 Copyright 2000 2018 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark

More information

SmartPSS. Smart Professional Surveillance System. Provide efficient device management, monitoring, playback, alarm, video analytics, video wall, etc.

SmartPSS. Smart Professional Surveillance System. Provide efficient device management, monitoring, playback, alarm, video analytics, video wall, etc. SmartPSS Smart Professional Surveillance System An easy-to-use security surveillance application with friendly interface. Designed for small or medium daily-use system. Provide efficient device management,

More information

NIELSEN API PORTAL USER REGISTRATION GUIDE

NIELSEN API PORTAL USER REGISTRATION GUIDE NIELSEN API PORTAL USER REGISTRATION GUIDE 1 INTRODUCTION In order to access the Nielsen API Portal services, there are three steps that need to be followed sequentially by the user: 1. User Registration

More information

Licensed Program Specifications

Licensed Program Specifications AFP Font Collection for MVS, OS/390, VM, and VSE Program Number 5648-B33 Licensed Program Specifications AFP Font Collection for MVS, OS/390, VM, and VSE, hereafter referred to as AFP Font Collection,

More information

European Year 2012 for Active Ageing and Solidarity between Generations. Graphic guidelines

European Year 2012 for Active Ageing and Solidarity between Generations. Graphic guidelines European Year 2012 for Active Ageing and Solidarity between Generations Graphic guidelines Contents Publishing information Published by European Commission Designed by Directorate General Employment, Social

More information

ipod touch 16GB - Technical Specifications

ipod touch 16GB - Technical Specifications ipod touch 16GB - Technical Specifications Size and Weight Height: 4.86 inches (123.4 mm) Width: 2.31 inches (58.6 mm) Depth: 0.24 inch (6.1 mm) Weight: 3.04 ounces (86 grams) Capacity 16GB Wireless 802.11a/b/g/n

More information

Installation Guide 8.0 ThingWorx Utilities

Installation Guide 8.0 ThingWorx Utilities Installation Guide 8.0 ThingWorx Utilities Copyright 2017 PTC Inc. and/or Its Subsidiary Companies. All Rights Reserved. User and training guides and related documentation from PTC Inc. and its subsidiary

More information

Install Notes for Plantronics Hub for Windows and Mac v3.10.2

Install Notes for Plantronics Hub for Windows and Mac v3.10.2 Date: 12/14/2017 Rev: 3.10.2 Install Notes for Plantronics Hub for Windows and Mac v3.10.2 Table of Contents Installation of Plantronics Hub for Windows... 3 Plantronics Hub... 3 Permissions... 3 Windows

More information

User Import process steps

User Import process steps User Import process steps This secti describes the CSV file creati process for the User Import process into the Talent Create or update users in the Talent Suite by creating a row for every intended user.

More information

MetaMoJi Share for Business Ver. 2 MetaMoJi Note for Business Ver. 2 Installation and Operation Guide

MetaMoJi Share for Business Ver. 2 MetaMoJi Note for Business Ver. 2 Installation and Operation Guide MetaMoJi Share for Business Ver. 2 MetaMoJi Note for Business Ver. 2 Installation and Operation Guide First Edition - ios is a trademark or registered trademark of Cisco in the U.S. and other countries

More information

1.1 Create a New Survey: Getting Started. To create a new survey, you can use one of two methods: a) Click Author on the navigation bar.

1.1 Create a New Survey: Getting Started. To create a new survey, you can use one of two methods: a) Click Author on the navigation bar. 1. Survey Authoring Section 1 of this User Guide provides step-by-step instructions on how to author your survey. Surveys can be created using questions and response choices you develop; copying content

More information

Portal Version User Manual

Portal Version User Manual Portal Version 2.0 - User Manual V1.0 April 2017 Portal Version 2.0 User Manual V1.0 April 2017 Table of Contents 1 Introduction... 4 1.1 Purpose of the Document... 4 1.2 Reference Documents... 4 1.3 Terminology...

More information

Xapity Attachments Administration Guide.

Xapity Attachments Administration Guide. Xapity Attachments Administration Guide www.xapity.com Document Version 1.0 Jab 2017 This document contains information that may change without notice. While every effort has been made to ensure that the

More information

SIMATIC. Industrial PC Microsoft Windows 10. Safety instructions 1. Initial startup: Commissioning the operating. system

SIMATIC. Industrial PC Microsoft Windows 10. Safety instructions 1. Initial startup: Commissioning the operating. system Safety instructions 1 Initial startup: Commissioning the operating 2 system SIMATIC Industrial PC Restoring operating system and partitions 3 Configuring and updating the operating system 4 Extended scope

More information

8 Parts and diagrams. Chapter contents. Ordering parts and supplies. Accessories. Covers. Internal components. Tray 2 pickup assembly

8 Parts and diagrams. Chapter contents. Ordering parts and supplies. Accessories. Covers. Internal components. Tray 2 pickup assembly 8 Parts and diagrams Chapter contents Ordering parts and supplies Accessories Covers Internal components Tray 2 pickup assembly Alphabetical parts list Numerical parts list ENWW Chapter contents 217 Ordering

More information

SETTING UP YOUR.NET DEVELOPER ENVIRONMENT

SETTING UP YOUR.NET DEVELOPER ENVIRONMENT SETTING UP YOUR.NET DEVELOPER ENVIRONMENT Summary Configure your local dev environment for integrating with Salesforce using.net. This tipsheet describes how to set up your local environment so that you

More information

SETTING UP YOUR.NET DEVELOPER ENVIRONMENT

SETTING UP YOUR.NET DEVELOPER ENVIRONMENT SETTING UP YOUR.NET DEVELOPER ENVIRONMENT Summary Configure your local dev environment for integrating with Salesforce using.net. This tipsheet describes how to set up your local environment so that you

More information

novdocx (en) 11 December 2007 XII XIIWebAccess

novdocx (en) 11 December 2007 XII XIIWebAccess XIIWebAccess Chapter 53, Scaling Your WebAccess Installation, on page 855 Chapter 54, Configuring WebAccess Components, on page 869 Chapter 55, Managing User Access, on page 915 Chapter 56, Monitoring

More information

EU Terminology: Building text-related & translation-oriented projects for IATE

EU Terminology: Building text-related & translation-oriented projects for IATE EU Terminology: Building text-related & translation-oriented projects for IATE 20th European Symposium on Languages for Special Purposes University of Vienna 8-10 July 2015 Rodolfo Maslias European Parliament

More information

A comparison of open source or free GIS software packages. Acknowledgements:

A comparison of open source or free GIS software packages. Acknowledgements: A comparison of open source or free GIS software packages Acknowledgements: Shane Bradt New Hampshire Geospatial Extension Specialist The New Hampshire Geospatial Extension Program sbradt@ceunh.unh.edu

More information

Perceptive Intelligent Capture

Perceptive Intelligent Capture Perceptive Intelligent Capture Technical s Version: 5.7.1 Written by: Product Knowledge, R&D Date: Tuesday, February 20, 2018 2018 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International

More information

Net: EUR Gross: EUR

Net: EUR Gross: EUR Code: DS-2CD1021-I IP CAMERA DS-2CD1021-I - 1080p 2.8 mm HIKVISION Net: 90.91 EUR Gross: 111.82 EUR IP camera with efficient H.264 image compression algorithm for clear and smooth video streaming at maximal

More information

19 Gloria Lane Fairfield, NJ Page 1 of 17

19 Gloria Lane Fairfield, NJ Page 1 of 17 19 Gloria Lane Fairfield, NJ 07004 1.888.611.2679 Page 1 of 17 Version 1.8 Introduction to the Vision-e Scanning Solution The Vision-e Scanning Solution was created for salespeople by salespeople as the

More information

Oracle Identity Manager Connector Guide for Generic SCIM. Release

Oracle Identity Manager Connector Guide for Generic SCIM. Release Oracle Identity Manager Connector Guide for Generic SCIM Release 11.1.1 E72359-02 June 2018 Oracle Identity Manager Connector Guide for Generic SCIM, Release 11.1.1 E72359-02 Copyright 2016, 2018, Oracle

More information

Page 1 of 11 Language Support Utilisation Selection Procedure Translation files Locale identifiers Language files Process Testing Considerations Help Files License files Program Manager Windows shortcuts

More information

Using the FDR for Mac Users

Using the FDR for Mac Users Using the FDR for Mac Users Author(s): Jack Mello version: 1.2 Written: June 7, 2010 Modified: June 21, 2011 ----------------------- Software: - Mac OS X 10.6.7 - Cyberduck Version 3.8 (7920) Using the

More information

Technical Information

Technical Information Building Technologies Division Security Products Technical Information SPC Series SPC Support CD Release Note CD V3.6.6 04/08/2015 Updates since: CD V3.4.5 Release V3.6.6 for SPC versions SPC42xx/43xx/52xx/53xx/63xx.

More information

Information About Localization, page 1 Configure Localization Support on SIP Phones, page 21

Information About Localization, page 1 Configure Localization Support on SIP Phones, page 21 This chapter describes the localization support in Cisco Unified Communications Manager Express (Cisco Unified CME) for languages other than English and network tones and cadences not specific to the United

More information

GLOBAL NETFLIX PREFERRED VENDOR (NPV) RATE CARD:

GLOBAL NETFLIX PREFERRED VENDOR (NPV) RATE CARD: Global Rate Card Timed Text Origination Rates Audio Description Rates Netflix Scope of Work Guidelines A/V Materials Timed Text Audio Materials Trailers Forced Narratives NPV SLA & KPIs GLOBAL NETFLIX

More information

Release Notes MimioStudio Software

Release Notes MimioStudio Software Release Notes MimioStudio 8.0.1 Software Copyright Notice 2011 DYMO/Mimio, a Newell Rubbermaid company About MimioStudio 8.0.1 Welcome to MimioStudio 8.0.1 software! Version 8.0.1 is an update to the existing

More information

Talk2You User Manual Smartphone / Tablet

Talk2You User Manual Smartphone / Tablet Talk2You User Manual Smartphone / Tablet Don t Translate it. Lingmo It! language translation technology for the global market The World s First Translating Voice Messaging Software Communicate with cross-border

More information

Product Release Notes

Product Release Notes Product Release Notes Release 33 October 2016 VERSION 20161021 Table of Contents Document Versioning 2 Overview 3 Known Issues 3 Usability 3 Drag and Drop Column Reordering is not Supported in some Admin

More information

MailMerge Reports. User Guide. Ver Copyright 2012 Dharma Ingeniería S.L., All Rights Reserved Pag.1 de 15

MailMerge Reports. User Guide. Ver Copyright 2012 Dharma Ingeniería S.L., All Rights Reserved Pag.1 de 15 MailMerge Reports User Guide Ver. 1.2 www.dharma.es Copyright 2012 Dharma Ingeniería S.L., All Rights Reserved Pag.1 de 15 MailMerge Reports. User Guide Version 1.2, 2013 Copyright 2013 Dharma Ingeniería

More information

INSITE Features Notes

INSITE Features Notes INSITE 8.1.2 Features Notes The latest INSITE information can be found on the website at http://insite.cummins.com For technical support, please send an email to servicetoolsupport@cummins.com or call

More information