SmartFocus Cloud Service APIs

Size: px
Start display at page:

Download "SmartFocus Cloud Service APIs"

Transcription

1 SmartFocus Cloud Service APIs Document name SmartFocus User Guide Service Campaign management for managing campaigns Protocol SOAP & REST over HTTP Version 11.8 Last updated on June 22, 2015

2 Table of Contents Table of Contents Table of Contents 2 Introduction 3 About This Document 3 About SmartFocus APIs 3 Feedback 3 Support Options 3 Training Options 3 SmartFocus's Products and Services 3 Disclaimer 3 Overview of the Message Builder API 4 Manually Obtaining Basic Access Authentication for the Message Builder API 4 Queries 5 JSON Objects 7 Connection 11 Recommended Token Usage 11 Open Connection 12 Close Connection 14 List of Messages 15 Examples 16 Create a Message 18 Examples 21 Retrieve a Message 23 Example 25 Update a Message 26 Examples 27 Retrieve a Content Block 28 Example 29 Retrieve a List of Content Blocks 29 Example 30 Delete a Message 31 Example

3 Introduction Introduction About This Document This document is a reference document for using SmartFocus APIs. It does not explain the purpose or functions of SmartFocus features. For information on these features, please consult the SmartFocus Online Help or the SmartFocus User Guide. This document is intended for developers and project managers. About SmartFocus APIs An Application Programming Interface (API) is a source code interface that a computer system or program library provides in order to support requests for services made from another computer program. The goal of SmartFocus APIs is to offer customers the ability to pilot a complete campaign from their own system. Feedback The SmartFocus User Guide is constantly being enhanced to provide you with more and more information on using SmartFocus API methods. If you can't find the information you need or want to provide feedback, simply drop us a line at documentation@smartfocus.com. We look forward to hearing from you! Support Options SmartFocus provides you with a dedicated Account Manager to accompany you throughout the execution of your projects in SmartFocus. Your Account Manager is the gateway to support, training, and professional services. Working with your Account Manager, you can rely on SmartFocus s deliverability and technical support teams for complex troubleshooting and optimization. Training Options SmartFocus provides fully comprehensive training ranging from basic product training through to advanced modules and both strategic and tactical marketing courses. The training courses are designed to help you increase productivity, develop new methods, and share best practices to optimize your , mobile, and social marketing campaigns. To get more information on training, please contact your Account Manager. SmartFocus's Products and Services For more information on SmartFocus's products and services, please see Disclaimer While the information contained in this publication is believed to be true and accurate, SmartFocus cannot accept any legal responsibility for any errors or omissions contained herein. All information is subject to change without notice. ne of the material in this publication may be reproduced or transmitted in whole or in part without the express written permission of SmartFocus. 3

4 Overview of the Message Builder API Overview of the Message Builder API The Message Builder API is in REST and allows you to manage your messages and perform the following actions: Obtain a list of messages created in the Message Builder feature and the Message feature Retrieve the content of a specific message created HTML mode in the Message Builder feature Create a message in the Message Builder feature in HTML mode Retrieve details for a specific content block or a list of content blocks Modify an existing message created in the Message Builder feature Delete a message from the Message Builder feature te: For all methods that generate a response, the response is in JSON. For further information on how to use the Message Builder feature in SmartFocus, please consult the SmartFocus User Guide or SmartFocus Online Help. The following methods are available: Connection Operation Description Open Connection This method provides a session token when given valid credentials. Close Connection This method terminates the session token. Message Operation List of Messages Retrieve a Message Create a Message Update a Message Retrieve a Content Block Retrieve a List of Content Blocks Delete a Message Description This method allows you to obtain a list of messages created in the Message Builder feature and the Message feature. This method allows you to retrieve the content of a specific message created in the Message Builder feature and the old Message feature. This operation allows you to create a message in the Message Builder feature in HTML mode only. This message allows you to modify a message in the Message Builder feature or the old Message feature. This method retrieves the details of a content block. This method retrieves a list of content blocks. This method deletes a message from the Message Builder feature. Manually Obtaining Basic Access Authentication for the Message Builder API To use the Message Builder API methods, a basic access authentication is required. The basic access authentication is granted when a valid access token is provided, which is obtained using the Open Connection method. Once you obtain a valid token, you can use any of the other methods. Most HTTP clients natively support basic access authentication such as the curl command line tool. In this case, the value for the username is the token itself and the password is left empty. If your HTTP client does not directly support basic access authentication, you can manually configure the Authorization header: 1. Add a colon to the end of your token (e.g., token:) 2. Encode the resulting string using Base64 (e.g., dg9rzw46cg==) 3. Add the prefix Basic followed by one space (e.g., Basic dg9rzw46cg==) 4. Set the Authorization header (e.g., Authorization: Basic dg9rzw46cg==) 4

5 Overview of the Message Builder API WWW-Authenticate Since the Smart Message Builder API supports basic access authentication and returns a WWW-Authenticate header, you can use your browser to make read-only requests and test examples of GET HTTP methods. Queries Expanding Queries By default, when using the List of Messages method in the Message Builder API, the reponse displays only the href values of the messages that correspond to the request criteria. Returning this amount of information by default helps optimize network traffic. In order to obtain more detail for any field of the Message Object that is returned in the response, you can use include the_ expand query to your request. Using the formula of _expand=.itemsdesired field and adding it to your request allows you to return all of the values for the field in all of the messages returned. If you want to display the values for every field of the messages returned following a request, add _expand=.items to the request. Example: To display the first name of all members named John who are from the UK or the US, include the expand query for the firstname field as shown in the example query below: GET /users?firstname=john&country=uk,us&_expand=items.firstname The response will resemble the following: "href": " "limit": 2, "first": "href": " "next": "href": " "items": [ "href": " "firstname": "John", "href": " "firstname": "John" ] Example: To display all of the information for members named John who are from the UK or the US, include the expand query as shown in the example below: GET /users?firstname=john&country=uk,us&_expand=items The response will resemble the following: "href": " "limit": 2, "first": "href": " "next": "href": " "items": [ "href": " 5

6 Overview of the Message Builder API ] "firstname": "John", "lastname": "Stuart", "country": "us", "href": " "firstname": "John", "lastname": "Doe", "country": "uk" Pagination Limit Queries When using the Message Builder API to retrieve data, your request may return a large volume of information. A useful way to control how much information is returned is with a pagination limit query. The pagination limit query allows you to define how many objects from your database are returned per collection page for your request so that you can process the information more easily. By using the _limit query parameter as in the example below, you can limit the number of objects returned in a request: Example: The following request returns 5 users at most: GET /users?_limit=5 Filtering Queries Filtering queries allow you to specify the data that you want returned for a request by using certain criteria. The criteria used for the filter must be defined by query parameter. The query parameter is made up of the two following elements: Query parameter name: The query parameter name is the name of the filtered object field. Query parameter value: The query parameter value is a list of values you want to be returned. These values are separated by commas. Example: The following request returns a list of all users with the first name "John" and the who are from either the "United Kingdom" or the "United States": GET /users?firstname=john&country=uk,us Date Range Filtering Queries Using date range filtering allows you to filter the data returned from a request according to its date range. The format of a date range query is as follows: fieldname=fromdate~todate fieldname fromdate todate Parameter Description Type Default Value The name of the field to filter on. Must be a supported date field. The start date of the date range. The end date of the date range. String Date Date The beginning of time. The current date. 6

7 Overview of the Message Builder API Example: The following request lists all users that were created on January 2015 where: the creationdate field is being filtered, the from date is T00:00: , the to date is T23:59: , and the plus (+) symbol is replaced by the code %2B: GET /users?creationdate= t00:00:00.000%2b0000~ T23:59:59.999%2B0000 Example: The following request lists all users that have been modified since 2015: GET /users?modificationdate= t00:00:00.000%2b0000~ JSON Objects Message Object The JSON object that represents a message that can be used in campaigns contains the following fields: Field Name Description Field Type Updatable Personalizable Nullable href id version mode status name subject The unique URL reference for the message. The unique identifier of the message. The version of the message with the following values: 1: messages created in the old Message feature 2: messages created in the Message Builder The mode of the message in themessage Builder: html: The message is in HTML mode. visual: The message is in visual mode. The status of a message. The name of a message. The subject of a message. Reference ID Message Version Message Mode Message Status String Yes Yes String Yes Yes Yes 7

8 Overview of the Message Builder API Field Name Description Field Type Updatable Personalizable Nullable creationdate modificationdate fromlabel from tolabel replytolabel replyto favorite links text html The date when the Date message was created. The date when the message was last modified. This field is automatically updated whenever a change is made to the message. Date The information that will be displayed next to the sender in String Yes Yes Yes the 's From field. The sender address defined for your account. This entry can be changed in the Headers Setup (Mktg) of the Account Settings section. The information that will be displayed in the 's To field. The information that will be displayed next to the reply-to address. The address that should serve as the 's reply-to address. Whether or not the message is indicated as a favorite. Contains the links used in the message. The plain-text part of the message body. The HTML part of the message body. String Yes Yes String Yes Yes Yes Yes Boolean Link array Yes String Yes Yes String Yes Yes te: The html field of the JSON message object cannot be null if the value of the status field is ready. 8

9 Overview of the Message Builder API Field Name Description Field Type Updatable Personalizable Nullable externalmessageid The external message ID is different from the message ID in that the external message ID is the only unique identifier for a version 2 message with the status value of ready that can be used with any other SmartFocus API developed previous to the Message Builder API. ID Example: The following is an example of what a message object will resemble: "href": " "id": "fe3c4f7d-066e-45d4-9eae-4292e493a832", "name": "Welcome 2015", "subject": "Welcome to Acme!", "creationdate": " T13:19: ", "modificationdate": " T14:14: ", "fromlabel": "Acme", "from ": "news@acme.com", "tolabel": "firstname lastname", "replytolabel": "Acme Contact", "version": "2", "favorite": false, "status": "draft", "mode": "html", "links": [ "id": 1, "type": "standard", "url": " ], "html": "<!DOCTYPE html><html><head></head><body><h1>welcome firstname lastname!</h1> <p>our <a href=\"link 1\">list of products</a>.</p></body></html>" Link Object The link object is contained in a message object and contains link information for the message. The link object can contain the following fields: Field Name Description Field Type Updatable id The unique order of the link. ID Yes type The type of link. Link Type Yes label The label defined for the link. String Yes Yes Nullable 9

10 Overview of the Message Builder API Field Name url untracked Description The URL of the link. te: Only used with links that have the value standard or personalised in the type field. Whether or not a standard link is tracked. te: The untracked option can only be used with standard links. When a standard link is untracked, the value displayed is yes. Field Type Updatable String Yes Yes Boolean Yes Yes Nullable confirmationurl errorurl updateparameters The URL where the member is redirected when they click the link and the link functions correctly. The URL where the member is redirected when they click the link and the link does not function correctly. The value and the member table field where the value is inserted when the member clicks the link. The syntax for the update link parameter is: FIELDNAME1='value1',FIELDNAME2='value2' Example: TITLE='Mrs.',LASTNAME='Smith' String Yes Yes String Yes Yes String Yes Yes messageid The ID of the message. ID Yes Yes siteid The ID of the landing page. ID Yes Yes Example: An example standard link to the SmartFocus website will resemble the following: "id": "241", "type": "standard", "url": " "label": "SmartFocus" 10

11 Connection Connection Prerequisite: To use SmartFocus APIs, you need to have the API manager login provided by SmartFocus and the associated password. To connect through the API, you must first retrieve the manager key from SmartFocus. 1. Go to Account Administration and select Logins. 2. Click the Edit icon next to your API manager. 3. In the API section of the popup window, copy the API key (also known as the manager key) and use it to open a connection to retrieve the token that will be used in your calls. Calling the connect method (with the login, password, manager key) will provide a token, to be used in all subsequent calls. This token will expire in the following cases: When a close connection call is made. When the maximum number of calls per session, defined by the manager in SmartFocus, is reached. When the session times out. Recommended Token Usage An open connection call generates a token that should be used until it expires. Once the token expires, an API call will generate a session exception. At this point, you should open a new connection to continue your API calls. Example: An example workflow: 1. Open the connection to generate the token. 2. Use API method calls as needed. If a call fails due to a problem with the session: a. Send another open connection call to renew the token. b. Resend the call that failed due to the session issue. 3. Send a close connection call once all API method calls for the session have been sent successfully. te: For time consuming calls (e.g., uploading a large file), you may need to use an open connection call to ensure that the token will remain valid for the duration of the call. 11

12 Open Connection This method provides a session token when given valid credentials. te: The token is valid for 60 minutes. This is a POST method. URL te: The server information you enter in the URL depends on which of the following data centers your account is associated: Data Center Telecity Equinix Server apir.campaigncommander.com apie.campaigncommander.com For more information, please contact your Account Manager. Required parameters Description JSON Body Fields login password The login provided for API access. The password. te: API passwords expire after 365 days. apikey The manager key copied from SmartFocus(see Connection on page 11) Error Responses Status Error Messages 400 The JSON object body is either invalid or missing. The following fields are missing or invalid. 401 The credentials you entered are incorrect. Example Method POST JSON Body Fields "login": "AcmeAdmin", "password": "Acme2014*", "apikey": "CdX7CrlE_26blFNJOsgfdawh6LJ3y6pwg5PEOvA" 12

13 Response "token": "Nn3HisxFdwAu4W76mBewV9fOegnkDcDexzOKGTeBWmmNPqDigN_Z-0h" 13

14 Close Connection This method terminates the session token. This is a REST DELETE method. URL te: The server information you enter in the URL depends on which of the following data centers your account is associated: Data Center Telecity Equinix Server apir.campaigncommander.com apie.campaigncommander.com For more information, please contact your Account Manager. Required parameters Description HTTP Header Authorization Example Method The Basic access authorization. DELETE Header Authorization: Basic Base64 encoded "token:" Response te: response is generated. 14

15 List of Messages List of Messages This method allows you to obtain a list of messages created in the Message Builder feature and the Message feature. This is a GET method. URL te: The server information you enter in the URL depends on which of the following data centers your account is associated: Data Center Telecity Equinix Server apir.campaigncommander.com apie.campaigncommander.com For more information, please contact your Account Manager. Required parameters HTTP Header Authorization Query Parameters version Description The Basic access authorization. Allows you to filter the list of messages returned by message version. You can only retrieve one of the following message version types per request: 1: messages created in the old Message feature 2: messages created in the Message Builder externalmessageid _expand _limit te: If the version parameter is not defined in the request, by default only messages created with the Message Builder (i.e., version 2) are displayed. The external message ID is different from the message ID in that the external message ID is the only unique identifier for a version 2 message with the status value of ready that can be used with any other SmartFocus API developed previous to the Message Builder API. This means that if you want to create a campaign using another API in SOAP or REST, the externalmessageid is the identifier to use for the message created in the Message Builder feature. Allows you to expand any field of the Message Object. Allows you to set the limit of messages listed on a page. Error Responses Status Error Messages The Authorization header is missing. The credentials you entered are incorrect. 401 The Authorization header is incorrectly encoded. Basic authentication information is missing. 404 The message with the ID ''0'' cannot be found. 15

16 List of Messages Examples List All Message Builder Messages Method GET Header Authorization: Basic Base64 encoded "token:" Response "href": " "limit": 10, "next": "href": " "items": [ "href": " "href": " ] List All Messages from Old Message Feature Method GET Header Authorization: Basic dg9rzw46cg== Response "href": " "limit": 10, "next": "href": " "items": [ "href": " "href": " ] 16

17 List of Messages List Message Builder Messages with Message Name Displayed Method GET Header Authorization: Basic dg9rzw46cg== Response "href": " "limit": 10, "next": "href": " "items": [ "href": " "name": "December Newsletter", "href": " "name": "vember Newsletter",...,... ] 17

18 Create a Message Create a Message This operation allows you to create a message in the Message Builder feature in HTML mode only. This is a POST method. URL te: The server information you enter in the URL depends on which of the following data centers your account is associated: Data Center Telecity Equinix Server apir.campaigncommander.com apie.campaigncommander.com For more information, please contact your Account Manager. Required parameters Description HTTP Header Authorization JSON Body Fields status version The Basic access authorization. The status of the message: draft ready The version of the message: 1: old Message feature 2: Message Builder te: You can only create messages with the version number 2 using the Message Builder API. The mode of the message: mode visual html te: Currently, you can only create messages in HTML mode using the Message Builder API. name subject favorite from fromlabel The name of the message. The subject of the message. te: This field is required only if the status field value is set to ready. Whether or not the message has been marked as a favorite. The From address. te: This field is required only if the status field value is set to ready. The From name. te: This field is required only if the status field value is set to ready. 18

19 Create a Message Required parameters Description tolabel replyto replytolabel text html links The To name. te: This field is required only if the status field value is set to ready. The Reply To address. The Reply To name. te: This field is required only if the status field value is set to ready. The text that appears in the text-only version of the message. The HTML content used for the message. The links in the message. Error Responses Status Error Messages The JSON object body is either invalid or missing. The following fields are missing or invalid. 400 You do not have the following user rights for the MESSAGE feature: 0. A message that has already been sent in a campaign cannot be deleted. Messages created in the Message feature cannot be modified. The Authorization header is missing. The credentials you entered are incorrect. 401 The Authorization header is incorrectly encoded. Basic authentication information is missing. 404 The message with the ID ''0'' cannot be found. JSON Body Response Fields Name Description Personalization Type Modifiable Nullable href The unique URL reference to the message. Reference id The unique identifier to the message. String name The name of the message. String Yes Yes subject The subject of the message. Yes String Yes Yes html The HTML part of the message body. Yes String Yes Yes text The text part of the message body. Yes String Yes Yes fromlabel The label describing the sender. Yes String Yes Yes from The of the sender. Yes String Yes tolabel The label of the message recipient. Yes String Yes Yes replytolabel The label of the reply to address. Yes String Yes Yes replyto The reply to address. String Yes Yes creationdate The date when the message was created. The date format used is ISO-8601 with the time zone UTC. Date 19

20 Create a Message Name Description Personalization Type Modifiable Nullable modificationdate The date when the message was last modified. The date format used is ISO-8601 with the time zone UTC. te: This field is automatically updated when any change is made to the message. The version of the message: Date version 1: The message was created in the Message feature. 2: The message was created in the old Message feature. Message Version te: Currently, you can only create messages in HTML mode using the Message Builder API. The status of the message. status te: This field can only be changed from draft to ready. Once the message has been set to ready, it cannot be reverted back to draft. Message Status Yes The mode of the message: HTML mode Visual te: When updating the HTML part of a visual message, the mode field value is automatically changed to html. Message Mode favorite links Whether or not the message is marked as a favorite (with a star in the interface). The links used in the message: standard: A standard link redirects to a given URL. personalized: A link with personalization in the URL. mirror: A mirror link directs to an automatically generated, web-based version of the message. unsubscribe: An unsubscribe link will indicate that the member who clicks the link does not wish to receive further messages. sites: A sites link directs to an active landing page. update: An update link will update a specific field of member database when clicked. Boolean Yes List of Message Links Yes 20

21 Create a Message Examples Creating a Draft Message Method POST Header Authorization: Basic Base64 encoded "token:" JSON Body Fields "name": "Acme News", "status": "draft", "mode": "html", "text": "Acme News", "html": "<!DOCTYPE html><html><head><title>acme News</title></head><body>\n<h1>Acme News</h1>\n <p>our <a href=\" of products</a>!</p>\n</body></html>" Response "href": " "id": "d7bf11e4-09c e34-2eb7f1b47390", "name": "Acme News", "creationdate": " T14:21: ", "modificationdate": " T14:21: ", "from ": "admin@hatcompany.com", "version": "2", "status": "draft", "mode": "html", "links": [ "id": 1, "type": "standard", "url": " ], "html": "<!DOCTYPE html><html><head><title>acme News</title></head><body>\n<h1>Acme News</h1>\n <p>our <a href=\"link 1\" target=\"_blank\">list of products</a>!</p>\n</body></html>" Creating a Ready Message Method POST Header Authorization: Basic dg9rzw46cg== JSON Body Fields "name": "Acme News", "status": "ready", "mode": "html", "subject": "Acme News", "from ": "editor@acme.com", 21

22 Create a Message "fromlabel": "Acme News", "tolabel": "FIRSTNAME LASTNAME", "replytolabel": "Acme Contact", "text": "Acme News", "html": "<!DOCTYPE html><html><head><title>acme News</title></head><body>\n<h1>Acme News</h1>\n <p>our <a href=\" of products</a>!</p>\n</body></html>" ' Response "href": " "id": "91424a69-a9fc-49a5-83fb f80fe", "name": "Acme News", "subject": "Acme News", "creationdate": " T11:00: ", "modificationdate": " T11:00: ", "fromlabel": "Acme News", "from ": "editor@acme.com", "tolabel": "FIRSTNAME LASTNAME", "replytolabel": "Acme Contact", "externalmessageid": "34558", "version": "2", "status": "ready", "mode": "html", "links": [ "id": 1, "type": "standard", "url": " ], "text": "Acme News", "html": "<!DOCTYPE html><html><head><title>acme News</title></head><body>\n<h1>Acme News</h1>\n <p>our <a href=\"link 1\" target=\"_blank\">list of products</a>!</p>\n</body></html>" 22

23 Retrieve a Message Retrieve a Message This method allows you to retrieve the content of a specific message created in the Message Builder feature and the old Message feature. This is a GET method. URL te: The server information you enter in the URL depends on which of the following data centers your account is associated: Data Center Telecity Equinix Server apir.campaigncommander.com apie.campaigncommander.com For more information, please contact your Account Manager. Required parameters Description HTTP Header Authorization Path Parameter messageid The Basic access authorization. The ID of the message Error Responses Status Error Messages The Authorization header is missing. The credentials you entered are incorrect. 401 The Authorization header is incorrectly encoded. Basic authentication information is missing. 404 The message with the ID ''0'' cannot be found. JSON Body Response Fields Name Description Personalization Type Modifiable Nullable href The unique URL reference to the message. Reference id The unique identifier to the message. String name The name of the message. String Yes Yes subject The subject of the message. Yes String Yes Yes html The HTML part of the message body. Yes String Yes Yes text The text part of the message body. Yes String Yes Yes fromlabel The label describing the sender. Yes String Yes Yes from The of the sender. Yes String Yes 23

24 Retrieve a Message Name Description Personalization Type Modifiable Nullable tolabel The label of the message recipient. Yes String Yes Yes replytolabel The label of the reply to address. Yes String Yes Yes replyto The reply to address. String Yes Yes creationdate modificationdate The date when the message was created. The date format used is ISO-8601 with the time zone UTC. The date when the message was last modified. The date format used is ISO-8601 with the time zone UTC. te: This field is automatically updated when any change is made to the message. The version of the message: Date Date version 1: The message was created in the Message feature. 2: The message was created in the old Message feature. Message Version The status of the message. status te: This field can only be changed from draft to ready. Once the message has been set to ready, it cannot be reverted back to draft. Message Status Yes mode favorite links The mode of the message: HTML Visual Whether or not the message is marked as a favorite (with a star in the interface). The links used in the message: standard: A standard link redirects to a given URL. personalized: A link with personalization in the URL. mirror: A mirror link directs to an automatically generated, web-based version of the message. unsubscribe: An unsubscribe link will indicate that the member who clicks the link does not wish to receive further messages. sites: A sites link directs to an active landing page. update: An update link will update a specific field of member database when clicked. Message Mode Boolean Yes List of Message Links Yes 24

25 Retrieve a Message Example Retrieving a Specific Message Using the Message ID Method GET Header Authorization: Basic Base64 encoded "token:" Response "href": " "id": "0045e1b2-b48c-47ba-a982-95ee0e1a08c6", "name": "Welcome 2015", "subject": "Welcome to Acme!", "creationdate": " T13:19: ", "modificationdate": " T14:14: ", "fromlabel": "Acme", "from ": "news@acme.com", "tolabel": "firstname lastname", "replytolabel": "Acme Contact", "version": "2", "favorite": false, "status": "draft", "mode": "html", "links": [ "id": 1, "type": "standard", "url": " ], "html": "<!DOCTYPE html><html><head></head><body><h1>welcome firstname lastname!</h1> <p>our <a href=\"link 1\">list of products</a>.</p></body></html>" 25

26 Update a Message Update a Message This message allows you to modify a message in the Message Builder feature or the old Message feature. This is a POST method. URL te: The server information you enter in the URL depends on which of the following data centers your account is associated: Data Center Telecity Equinix Server apir.campaigncommander.com apie.campaigncommander.com For more information, please contact your Account Manager. Required parameters Description HTTP Headers Authorization Path Parameter messageid The Basic access authorization. The ID of the message JSON Body Fields status version mode name subject favorite from fromlabel tolabel replyto replytolabel text html links The status of the message: draft ready The version of the message: 1: old Message feature 2: Message Builder The mode of the message: visual html The name of the message. The subject of the message. Whether or not the message has been marked as a favorite. The From address. The From name. The To name. The Reply To address. The Reply To name. The text that appears in the text-only version of the message. The HTML content used for the message. The links in the message. 26

27 Update a Message Error Responses Status Error Messages The JSON object body is either invalid or missing. The following fields are missing or invalid. 400 You do not have the following user rights for the MESSAGE feature: 0. A message that has already been sent in a campaign cannot be deleted. Messages created in the Message feature cannot be modified. The Authorization header is missing. The credentials you entered are incorrect. 401 The Authorization header is incorrectly encoded. Basic authentication information is missing. 404 The message with the ID ''0'' cannot be found. Examples Marking a Message as Favorite Method POST Header Authorization: Basic Base64 encoded "token:" JSON Body Fields "favorite": true Response "href": " "id": "d7bf11e4-09c e34-2eb7f1b47390", "name": "Acme News", "favorite": true, "creationdate": " T14:21: ", "modificationdate": " T14:21: ", "from ": "admin@acme.com", "version": "2", "status": "draft", "mode": "html", "links": [ "id": 1, "type": "standard", "url": " ], "html": "<!DOCTYPE html><html><head><title>acme News</title></head><body>\n<h1>Acme News</h1>\n <p>our <a href=\"link 1\" target=\"_blank\">list of products</a>!</p>\n</body></html>" 27

28 Retrieve a Content Block Changing a Message's Status to Ready Method POST Header Authorization: Basic Base64 encoded "token:" JSON Body Fields "status": "ready", "subject": "Acme News", "fromlabel": "Acme Administrator", "tolabel": "firstname lastname", "replytolabel": "Acme Contact" Response "href": " "id": "f35f726c-29c4-4d21-b4f9-be7b a", "name": "Newsletter January 2015", "subject": "Acme News", "creationdate": " T12:70: ", "modificationdate": " T13:09: ", "fromlabel": "Acme Administrator", "from ": "admin@acme.com", "tolabel": "firstname lastname", "replytolabel": "Acme Contact", "externalmessageid": "34690", "version": "2", "favorite": false, "status": "ready", "mode": "html", "links": [ "id": 1, "type": "standard", "url": " ], "text": "Acme News\List of our products: link 1", "html": "<!DOCTYPE html><html><head><title>acme News</title></head><body>\n<h1>Acme News</h1>\n <p>list of our <a href=\"link 1\" target=\"_blank\">products</a>!</p>\n</body></html>" Retrieve a Content Block This method retrieves the details of a content block. This is a GET method. URL te: The server information you enter in the URL depends on which of the following data centers your account is associated: 28

29 Retrieve a List of Content Blocks Data Center Telecity Equinix Server apir.campaigncommander.com apie.campaigncommander.com For more information, please contact your Account Manager. Required parameters Description HTTP Header Authorization Path Parameter contentblockid The Basic access authorization. The ID of the message Example Method GET Head er Authorization: Basic Base64 encoded "token:" Response "href": " "id": "4312", "type": "html", "name": "Acme Footer", "description": "A footer that can should put at the bottom of messages.", "creationdate": " T13:57: ", "modificationdate": " T12:14: ", "content": "<p>copyright <b>acme</b> 2015</p>" Retrieve a List of Content Blocks This method retrieves a list of content blocks. This is a GET method. URL te: The server information you enter in the URL depends on which of the following data centers your account is associated: 29

30 Retrieve a List of Content Blocks Data Center Telecity Equinix Server apir.campaigncommander.com apie.campaigncommander.com For more information, please contact your Account Manager. Required parameters Description HTTP Headers Authorization Query Parameters _limit _expand The Basic access authorization. Allows you to define how many items to show per page. Allows you to see the details pertaining to an item returned in the response. Example Method GET Head er Authorization: Basic Base64 encoded "token:" Response "href": " "limit": 10, "next": "href": " "items": [ "href": " "href": " ] 30

31 Delete a Message Delete a Message This method deletes a message from the Message Builder feature. This is a DELETE method. URL te: The server information you enter in the URL depends on which of the following data centers your account is associated: Data Center Telecity Equinix Server apir.campaigncommander.com apie.campaigncommander.com For more information, please contact your Account Manager. Required parameters Description HTTP Header Authorization Path Parameter messageid The Basic access authorization. The ID of the message Example Method DELETE Header Authorization: Basic Base64 encoded "token:" Response te: response is generated. 31

SmartFocus Cloud Service APIs

SmartFocus Cloud Service APIs SmartFocus Cloud Service APIs Document name Transactional Messaging Templates REST API Guide Service Transactional Messaging Service for Managing Templates Protocol REST over HTTP Version 11.23 Last updated

More information

User Manual. SmartLite WebQuiz SQL Edition

User Manual. SmartLite WebQuiz SQL Edition User Manual SmartLite WebQuiz SQL Edition SmartLite WebQuiz SQL All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical, including

More information

Early Data Analyzer Web User Guide

Early Data Analyzer Web User Guide Early Data Analyzer Web User Guide Early Data Analyzer, Version 1.4 About Early Data Analyzer Web Getting Started Installing Early Data Analyzer Web Opening a Case About the Case Dashboard Filtering Tagging

More information

SelectSurveyASP Advanced User Manual

SelectSurveyASP Advanced User Manual SelectSurveyASP Advanced User Manual Creating Surveys 2 Designing Surveys 2 Templates 3 Libraries 4 Item Types 4 Scored Surveys 5 Page Conditions 5 Piping Answers 6 Previewing Surveys 7 Managing Surveys

More information

External HTTPS Trigger AXIS Camera Station 5.06 and above

External HTTPS Trigger AXIS Camera Station 5.06 and above HOW TO External HTTPS Trigger AXIS Camera Station 5.06 and above Created: October 17, 2016 Last updated: November 19, 2016 Rev: 1.2 1 Please note that AXIS does not take any responsibility for how this

More information

Intel Unite Solution Version 4.0

Intel Unite Solution Version 4.0 Intel Unite Solution Version 4.0 System Broadcast Application Guide Revision 1.0 October 2018 October 2018 Dcoument # XXXX Legal Disclaimers and Copyrights This document contains information on products,

More information

Edition 3.2. Tripolis Solutions Dialogue Manual version 3.2 2

Edition 3.2. Tripolis Solutions Dialogue Manual version 3.2 2 Edition 3.2 Tripolis Solutions Dialogue Manual version 3.2 2 Table of Content DIALOGUE SETUP... 7 Introduction... 8 Process flow... 9 USER SETTINGS... 10 Language, Name and Email address settings... 10

More information

Infoblox Authenticated DHCP

Infoblox Authenticated DHCP Infoblox Authenticated DHCP Unified Visitor Management amigopod Technical Note Revision 1.1 5 July 2010 United States of America +1 (888) 590-0882 Europe, Middle East & Asia +34 91 766 57 22 Australia

More information

Quantum Policy Suite Subscriber Services Portal 2.9 Interface Guide for Managers

Quantum Policy Suite Subscriber Services Portal 2.9 Interface Guide for Managers Quantum Policy Suite Subscriber Services Portal 2.9 Interface Guide for Managers Version 5.5 August 31, 2013 Cisco Systems, Inc. www.cisco.com Cisco has more than 200 offices worldwide. Addresses, phone

More information

Dynamics CRM Integration for Gmail. User Manual. Akvelon, Inc. 2017, All rights reserved

Dynamics CRM Integration for Gmail. User Manual. Akvelon, Inc. 2017, All rights reserved User Manual Akvelon, Inc. 2017, All rights reserved Contents Overview... 3 Installation of Dynamics CRM Integration for Gmail 2.0... 3 Buying app subscription... 4 Remove the extension from Chrome... 5

More information

Sophos Mobile Control Network Access Control interface guide. Product version: 7

Sophos Mobile Control Network Access Control interface guide. Product version: 7 Sophos Mobile Control Network Access Control interface guide Product version: 7 Document date: January 2017 Contents 1 About this guide...3 2 About Sophos Mobile Control...4 3 Sophos Mobile Control NAC

More information

Administration Guide. Lavastorm Analytics Engine 6.1

Administration Guide. Lavastorm Analytics Engine 6.1 Administration Guide Lavastorm Analytics Engine 6.1 Administration Guide: Lavastorm Analytics Engine 6.1 Legal notice Copyright THE CONTENTS OF THIS DOCUMENT ARE THE COPYRIGHT OF LIMITED. ALL RIGHTS RESERVED.

More information

DreamFactory Security Guide

DreamFactory Security Guide DreamFactory Security Guide This white paper is designed to provide security information about DreamFactory. The sections below discuss the inherently secure characteristics of the platform and the explicit

More information

Way2mint SMS Mobile Terminate (MT) API Guide for HTTP HTTPS

Way2mint SMS Mobile Terminate (MT) API Guide for HTTP HTTPS Way2mint SMS Mobile Terminate (MT) API Guide for HTTP HTTPS The content of this document are copyright and remain the property of. This document is not to be reproduced in any form, whether electronic,

More information

Family Map Server Specification

Family Map Server Specification Family Map Server Specification Acknowledgements Last Modified: January 5, 2018 The Family Map project was created by Jordan Wild. Thanks to Jordan for this significant contribution. Family Map Introduction

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

Volante NACHA ISO20022 Validator AMI User Guide

Volante NACHA ISO20022 Validator AMI User Guide Volante NACHA ISO20022 Validator AMI User Guide 1. About Volante NACHA ISO20022 Validator AMI User Guide This document is referenced in the REST Services Deployment Guide. This outlines the available REST

More information

OpenProject AdminGuide

OpenProject AdminGuide OpenProject AdminGuide I. Contents I. Contents... 1 II. List of figures... 2 1 Administration... 2 1.1 Manage projects...2 1.2 Manage users...5 1.3 Manage groups...11 1.4 Manage roles and permissions...13

More information

API Integration Guide

API Integration Guide API Integration Guide Introduction SULU Mobile Solutions API is a programmable SMS message service. It enables your in-house applications to have fully featured SMS capabilities using your favorite programming

More information

Sophos Mobile. Network Access Control interface guide. Product Version: 8.1

Sophos Mobile. Network Access Control interface guide. Product Version: 8.1 Network Access Control interface guide Product Version: 8.1 Contents About this guide... 1 Sophos Mobile NAC support... 2 Prerequisites...3 Configure NAC support...4 NAC web service interface... 5 API

More information

Chatter Answers Implementation Guide

Chatter Answers Implementation Guide Chatter Answers Implementation Guide Salesforce, Spring 16 @salesforcedocs Last updated: April 27, 2016 Copyright 2000 2016 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark

More information

Logistics Manager Quick Start Guide. Lavastorm Analytics Engine 6.0

Logistics Manager Quick Start Guide. Lavastorm Analytics Engine 6.0 Logistics Manager Quick Start Guide Lavastorm Analytics Engine 6.0 Logistics Manager Quick Start Guide: Lavastorm Analytics Engine 6.0 Legal notice Copyright THE CONTENTS OF THIS DOCUMENT ARE THE COPYRIGHT

More information

Family Map Server Specification

Family Map Server Specification Family Map Server Specification Acknowledgements The Family Map project was created by Jordan Wild. Thanks to Jordan for this significant contribution. Family Map Introduction Family Map is an application

More information

Chatter Answers Implementation Guide

Chatter Answers Implementation Guide Chatter Answers Implementation Guide Salesforce, Summer 18 @salesforcedocs Last updated: July 26, 2018 Copyright 2000 2018 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark

More information

User Guide Using AuraPlayer

User Guide Using AuraPlayer User Guide Using AuraPlayer AuraPlayer Support Team Version 2 2/7/2011 This document is the sole property of AuraPlayer Ltd., it cannot be communicated to third parties and/or reproduced without the written

More information

IBM emessage Version 9 Release 1 February 13, User's Guide

IBM emessage Version 9 Release 1 February 13, User's Guide IBM emessage Version 9 Release 1 February 13, 2015 User's Guide Note Before using this information and the product it supports, read the information in Notices on page 471. This edition applies to version

More information

Installation & Configuration Guide Enterprise/Unlimited Edition

Installation & Configuration Guide Enterprise/Unlimited Edition Installation & Configuration Guide Enterprise/Unlimited Edition Version 2.3 Updated January 2014 Table of Contents Getting Started... 3 Introduction... 3 Requirements... 3 Support... 4 Recommended Browsers...

More information

Issue No. Date Description of Changes Initial issue Added basic authentication

Issue No. Date Description of Changes Initial issue Added basic authentication Department: Subject: IT API Documentation Revision History: Issue No. Date Description of Changes 1.0 04.18.17 Initial issue 1.1 05.11.17 Added basic authentication Related Documents: Page 1 of 28 Classification

More information

DocuSign Spring '16 Release Notes

DocuSign Spring '16 Release Notes DocuSign Spring '16 Release Notes Published March 17, 2016 UPDATE This document provides information about the updates deployed to the DocuSign Production environment on March 10, 2016 as part of the DocuSign

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

Gradintelligence student support FAQs

Gradintelligence student support FAQs Gradintelligence student support FAQs Account activation issues... 2 I have not received my activation link / I cannot find it / it has expired. Please can you send me a new one?... 2 My account is showing

More information

Oracle Responsys. REST API Developer s Guide. REST API v1.3 for Responsys 18A E February 2018

Oracle Responsys. REST API Developer s Guide. REST API v1.3 for Responsys 18A E February 2018 Oracle Responsys REST API Developer s Guide REST API v1.3 for Responsys 18A E65150-16 IMPORTANT: The v1.3 REST APIs documented in this guide are intended for use with Oracle Responsys 18A and later. If

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

MIGRATING FROM PORTALS TO COMMUNITIES

MIGRATING FROM PORTALS TO COMMUNITIES MIGRATING FROM PORTALS TO COMMUNITIES Introduction Have a partner portal or customer portal in your org? You can set up a community as well, to take advantage of the great new features that Salesforce

More information

Get to know Inxmail Professional 4.4 in five easy steps

Get to know Inxmail Professional 4.4 in five easy steps How-to Get to know Inxmail Professional 4.4 in five easy steps Use this document as an introduction to help get you started with Inxmail Professional. The five steps presented here take you through the

More information

Textkernel Sourcebox. Sourcebox Interfacing Guide. Version , Textkernel BV, all rights reserved

Textkernel Sourcebox. Sourcebox Interfacing Guide. Version , Textkernel BV, all rights reserved Textkernel Sourcebox Sourcebox Interfacing Guide Version 3.0.30 2011-02-28 2011, Textkernel BV, all rights reserved Sourcebox Interfacing Guide 2 Disclaimer Ownership Usage Textkernel BV provides this

More information

Documentation for the new Self Admin

Documentation for the new Self Admin Documentation for the new Self Admin The following documentation describes the structure of the new Self Admin site along with the purpose of each site section. The improvements that have been made to

More information

RELEASE NOTES SHORETEL MS DYNAMICS CRM CLIENT VERSION 8

RELEASE NOTES SHORETEL MS DYNAMICS CRM CLIENT VERSION 8 RELEASE NOTES SHORETEL MS DYNAMICS CRM CLIENT VERSION 8 Compatibility Supports MS Dynamics CRM 2011, 2013, 2015 and 2016 (Online and Onpremises) as well as CRM deployed within Office 365 environments.

More information

How to social login with Aruba controller. Bo Nielsen, CCIE #53075 (Sec) December 2016, V1.00

How to social login with Aruba controller. Bo Nielsen, CCIE #53075 (Sec) December 2016, V1.00 Bo Nielsen, CCIE #53075 (Sec) December 2016, V1.00 Overview This short document describes the basic setup for social login using Aruba ClearPass and Aruba wireless LAN controller. Aruba ClearPass, version

More information

API Gateway. Version 7.5.1

API Gateway. Version 7.5.1 O A U T H U S E R G U I D E API Gateway Version 7.5.1 15 September 2017 Copyright 2017 Axway All rights reserved. This documentation describes the following Axway software: Axway API Gateway 7.5.1 No part

More information

Ninox API. Ninox API Page 1 of 15. Ninox Version Document version 1.0.0

Ninox API. Ninox API Page 1 of 15. Ninox Version Document version 1.0.0 Ninox API Ninox Version 2.3.4 Document version 1.0.0 Ninox 2.3.4 API 1.0.0 Page 1 of 15 Table of Contents Introduction 3 Obtain an API Key 3 Zapier 4 Ninox REST API 5 Authentication 5 Content-Type 5 Get

More information

Gmail Integration for Salesforce and Dynamics 365

Gmail Integration for Salesforce and Dynamics 365 Gmail Integration for Salesforce and Dynamics 365 PRIVACY POLICY LAST MODIFIED: MARCH 12, 2019 2019 Introduction Welcome to Gmail Integration for Salesforce and Dynamics 365, a service provided by Akvelon,

More information

Click Studios. Passwordstate. Remote Session Launcher. Installation Instructions

Click Studios. Passwordstate. Remote Session Launcher. Installation Instructions Passwordstate Remote Session Launcher Installation Instructions This document and the information controlled therein is the property of Click Studios. It must not be reproduced in whole/part, or otherwise

More information

New Dashboard - Help Screens

New Dashboard - Help Screens New Dashboard - Help Screens Welcome to the new Panacea Dashboard. This document aims to provide you with concise explanations of the menu system and features available to you as a Panacea user account

More information

700 Fox Glen Barrington, Illinois ph: [847] fx: [847] Webmail System User Guide

700 Fox Glen Barrington, Illinois ph: [847] fx: [847] Webmail System User Guide 700 Fox Glen Barrington, Illinois 60010 ph: [847] 842-9570 fx: [847] 842-0190 www.excaltech.com support@excaltech.com Webmail System User Guide Last Updated November 7, 2017 -2- Table of Contents Welcome

More information

Family Map Server Specification

Family Map Server Specification Family Map Server Specification Acknowledgements The Family Map project was created by Jordan Wild. Thanks to Jordan for this significant contribution. Family Map Introduction Family Map is an application

More information

Oracle Cloud Using the DocuSign Adapter. Release 17.3

Oracle Cloud Using the DocuSign Adapter. Release 17.3 Oracle Cloud Using the DocuSign Adapter Release 17.3 E72739-06 September 2017 Oracle Cloud Using the DocuSign Adapter, Release 17.3 E72739-06 Copyright 2016, 2017, Oracle and/or its affiliates. All rights

More information

RELEASE NOTES. Xcede Professional Accounting. Version 10.5

RELEASE NOTES. Xcede Professional Accounting. Version 10.5 RELEASE NOTES Xcede Professional Accounting Version 10.5 Author Created and Published by Reckon Limited Level 7, 65 Berry Street North Sydney NSW 2060 Australia ACN 003 348 730 All Rights Reserved Copyright

More information

User Guide. Version 8.0

User Guide. Version 8.0 User Guide Version 8.0 Contents 1 Getting Started... iii 1.1... About... iii 2 Logging In... 4 2.1... Choosing Security Questions... 4 3 The File Manager... 5 3.1... Uploading a file... 6 3.2... Downloading

More information

USPTO Accommodation Point User Guide VERSION 1.0

USPTO Accommodation Point User Guide VERSION 1.0 USPTO Accommodation Point User Guide VERSION 1.0 ii PUBLISHED BY MicroPact, Inc. 12901 Worldgate Drive, Suite 800, Herndon, VA 20170 COPYRIGHT MICROPACT, INC. All rights reserved. No part of the contents

More information

October J. Polycom Cloud Services Portal

October J. Polycom Cloud Services Portal October 2018 3725-42461-001J Polycom Cloud Services Portal Copyright 2018, Polycom, Inc. All rights reserved. No part of this document may be reproduced, translated into another language or format, or

More information

EMPOWER2018 Quick Base + Workato Workjam

EMPOWER2018 Quick Base + Workato Workjam EMPOWER2018 Quick Base + Workato Workjam Prerequisites Thank you for your interest in the Workjam. We are excited to have you on board. Before you get cracking to build your very own integration, below

More information

OSLA (Office of Staff Legal Assistance) User Manual. Created Date: 09 th December, 2016 Version: 2.0

OSLA (Office of Staff Legal Assistance) User Manual. Created Date: 09 th December, 2016 Version: 2.0 OSLA (Office of Staff Legal Assistance) User Manual Created Date: 09 th December, 2016 Version: 2.0 Table of Contents (Re-generate the TOC after modifications to the document) Contents Table of Contents

More information

1. Sending SMS using any client 2. Outlook Mobile Service (OMS) integrated SMS sending via outlook 2007 and 2010

1. Sending  SMS using any  client 2. Outlook Mobile Service (OMS) integrated SMS sending via outlook 2007 and 2010 SMS for Email Included in your RockendSMS package, is the ability to send SMS from any email client (EmailSMS) you are also able to send through Outlook Mobile Service (OMS) for Outlook 2007 and 2010 users.

More information

Composer Help. Web Request Common Block

Composer Help. Web Request Common Block Composer Help Web Request Common Block 7/4/2018 Web Request Common Block Contents 1 Web Request Common Block 1.1 Name Property 1.2 Block Notes Property 1.3 Exceptions Property 1.4 Request Method Property

More information

HappyFox API Technical Reference

HappyFox API Technical Reference HappyFox API Technical Reference API Version 1.0 Document Version 0.1 2011, Tenmiles Corporation Copyright Information Under the copyright laws, this manual may not be copied, in whole or in part. Your

More information

Print Management Cloud

Print Management Cloud Print Management Cloud Version 1.0 Configuration Guide January 2018 www.lexmark.com Contents 2 Contents Change history... 4 Overview... 5 Deployment readiness checklist...6 Getting started...7 Accessing

More information

700 Fox Glen Barrington, Illinois ph: [847] fx: [847] Webmail System User Guide

700 Fox Glen Barrington, Illinois ph: [847] fx: [847] Webmail System User Guide 700 Fox Glen Barrington, Illinois 60010 ph: [847] 842-9570 fx: [847] 842-0190 www.excaltech.com support@excaltech.com Webmail System User Guide Last Updated May 10, 2010 -2- Table of Contents Welcome and

More information

Integration Service. Admin Console User Guide. On-Premises

Integration Service. Admin Console User Guide. On-Premises Kony MobileFabric TM Integration Service Admin Console User Guide On-Premises Release 7.3 Document Relevance and Accuracy This document is considered relevant to the Release stated on this title page and

More information

Oracle Eloqua HIPAA Advanced Data Security Add-on Cloud Service

Oracle Eloqua HIPAA Advanced Data Security Add-on Cloud Service http://docs.oracle.com Oracle Eloqua HIPAA Advanced Data Security Add-on Cloud Service Configuration Guide 2018 Oracle Corporation. All rights reserved 07-Jun-2018 Contents 1 HIPAA 3 1.0.1 What is HIPAA?

More information

Enterprise Access Gateway Management for Exostar s IAM Platform June 2018

Enterprise Access Gateway Management for Exostar s IAM Platform June 2018 Enterprise Access Gateway Management for Exostar s IAM Platform June 2018 Copyright 2018 Exostar LLC All rights reserved. 1 Version Impacts Date Owner Enterprise Access Gateway (EAG) Guide Revised June

More information

TELIA OPERATOR SERVICE PLATFORM

TELIA OPERATOR SERVICE PLATFORM TELIA OPERATOR SERVICE PLATFORM OMA Authorization REST API Guide Copyright 2017 Aepona Limited, and copyright 2017 Telia All rights reserved by respective owners. Revision: 6.0 Legal Information Legal

More information

Using the Control Panel

Using the Control Panel Using the Control Panel Technical Manual: User Guide Creating a New Email Account 3. If prompted, select a domain from the list. Or, to change domains, click the change domain link. 4. Click the Add Mailbox

More information

Integration Service. Admin Console User Guide. On-Premises

Integration Service. Admin Console User Guide. On-Premises Kony Fabric Integration Service Admin Console User Guide On-Premises Release V8 SP1 Document Relevance and Accuracy This document is considered relevant to the Release stated on this title page and the

More information

IBM Aspera Faspex User Guide 4.2.0

IBM Aspera Faspex User Guide 4.2.0 IBM Aspera Faspex User Guide 4.2.0 All Platforms Revision: 672 Generated: 11/15/2018 13:51 Contents ii Contents Welcome to IBM Aspera Faspex...4 Introduction... 4 Logging In to Faspex...5 Logging In to

More information

Grant Application Portal User Manual. Community Foundation of Western Massachusetts

Grant Application Portal User Manual. Community Foundation of Western Massachusetts Grant Application Portal User Manual Community Foundation of Western Massachusetts V.1.00 10/19/2016 Contents Welcome!... 2 Create A New Account:... 2 Change your email address or password... 4 Change

More information

CIS-331 Fall 2013 Exam 1 Name: Total of 120 Points Version 1

CIS-331 Fall 2013 Exam 1 Name: Total of 120 Points Version 1 Version 1 1. (24 Points) Show the routing tables for routers A, B, C, and D. Make sure you account for traffic to the Internet. NOTE: Router E should only be used for Internet traffic. Router A Router

More information

CMS Enterprise Portal User Manual

CMS Enterprise Portal User Manual Centers for Medicare & Medicaid Services CMS expedited Life Cycle (XLC) 11/13/2017 Document Number: Enterprise_Portal_User_Manual_v6 Table of Contents Table of Contents 1. Introduction... 1 2. Overview...

More information

Filr 3.3 Using Micro Focus Filr with Microsoft Office and Outlook Applications. December 2017

Filr 3.3 Using Micro Focus Filr with Microsoft Office and Outlook Applications. December 2017 Filr 3.3 Using Micro Focus Filr with Microsoft Office and Outlook Applications December 2017 Legal Notice For information about legal notices, trademarks, disclaimers, warranties, export and other use

More information

If the presented credentials are valid server will respond with a success response:

If the presented credentials are valid server will respond with a success response: Telema EDI REST API Telema EDI REST API allows client to send and receive document to and from Telema server. In order to use EDI REST API client must have correct channel configured in Telema system.

More information

The Raiser's Edge and everydayhero Integration Guide

The Raiser's Edge and everydayhero Integration Guide The Raiser's Edge and everydayhero Integration Guide 12/16/2016 The Raiser's Edge & Everyday Hero Integration US 2016 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted

More information

Salesforce Integration User Guide. Cvent, Inc 1765 Greensboro Station Place McLean, VA

Salesforce Integration User Guide. Cvent, Inc 1765 Greensboro Station Place McLean, VA Salesforce Integration User Guide 2017 Cvent, Inc 1765 Greensboro Station Place McLean, VA 22102 www.cvent.com Contents Salesforce Integration User Guide... 3 Setting Up Your Account... 4 Helpful Hints...

More information

CANVAS BY INSTRUCTURE IOS GUIDE

CANVAS BY INSTRUCTURE IOS GUIDE CANVAS BY INSTRUCTURE IOS GUIDE This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike License Table of Contents All Users...5 What do Canvas text (SMS) message notifications

More information

Introduction & Basics! Technical Foundation! Authentication! Obtaining a token!... 4 Using the token! Working with notes!...

Introduction & Basics! Technical Foundation! Authentication! Obtaining a token!... 4 Using the token! Working with notes!... Simplenote API2 Documentation v2.1.3: (April 18, 2011). Recent documentation changes are listed on the last page. Contents Introduction & Basics!... 3 Technical Foundation!... 3 Authentication!... 4 Obtaining

More information

A User Guide. Besides, this Getting Started guide, you ll find the Zoho Campaigns User Guide and many other additional resources at zoho.com.

A User Guide. Besides, this Getting Started guide, you ll find the Zoho Campaigns User Guide and many other additional resources at zoho.com. A User Guide Welcome to Zoho Campaigns! This guide will help you create and send your first email campaign. In addition to sending an email campaign, you ll learn how to create your first mailing list,

More information

LAE 5.1 Logistics Manager Quick Start Guide. Version 0.7

LAE 5.1 Logistics Manager Quick Start Guide. Version 0.7 LAE 5.1 Logistics Manager Quick Start Guide Version 0.7 Copyright THE CONTENTS OF THIS DOCUMENT ARE THE COPYRIGHT OF LAVASTORM ANALYTICS LIMITED. ALL RIGHTS RESERVED. THIS DOCUMENT OR PARTS THEREOF MAY

More information

Connect-2-Everything SAML SSO (client documentation)

Connect-2-Everything SAML SSO (client documentation) Connect-2-Everything SAML SSO (client documentation) Table of Contents Summary Overview Refined tags Summary The Connect-2-Everything landing page by Refined Data allows Adobe Connect account holders to

More information

API Gateway Version September Key Property Store User Guide

API Gateway Version September Key Property Store User Guide API Gateway Version 7.5.2 15 September 2017 Key Property Store User Guide Copyright 2017 Axway All rights reserved. This documentation describes the following Axway software: Axway API Gateway 7.5.2 No

More information

Oracle Utilities Opower Solution Extension Partner SSO

Oracle Utilities Opower Solution Extension Partner SSO Oracle Utilities Opower Solution Extension Partner SSO Integration Guide E84763-01 Last Updated: Friday, January 05, 2018 Oracle Utilities Opower Solution Extension Partner SSO Integration Guide Copyright

More information

ExtraHop 7.3 ExtraHop Trace REST API Guide

ExtraHop 7.3 ExtraHop Trace REST API Guide ExtraHop 7.3 ExtraHop Trace REST API Guide 2018 ExtraHop Networks, Inc. All rights reserved. This manual in whole or in part, may not be reproduced, translated, or reduced to any machinereadable form without

More information

Administrator Guide. Find out how to set up and use MyKerio to centralize and unify your Kerio software administration.

Administrator Guide. Find out how to set up and use MyKerio to centralize and unify your Kerio software administration. Administrator Guide Find out how to set up and use MyKerio to centralize and unify your Kerio software administration. The information and content in this document is provided for informational purposes

More information

Administering Jive Mobile Apps for ios and Android

Administering Jive Mobile Apps for ios and Android Administering Jive Mobile Apps for ios and Android TOC 2 Contents Administering Jive Mobile Apps...3 Configuring Jive for Android and ios...3 Custom App Wrapping for ios...3 Authentication with Mobile

More information

Table of Contents 1 AQL SMS Gateway How to Guide...1

Table of Contents 1 AQL SMS Gateway How to Guide...1 Table of Contents 1 AQL SMS Gateway How to Guide...1 2 AQL...2 3 Overview...3 4 Trial Account with 50 free SMS messages...4 5 Prerequisites...5 6 Configuring the AQL transport...6 6.1 Configuring one or

More information

BeetleEye Application User Documentation

BeetleEye Application User Documentation BeetleEye Application User Documentation BeetleEye User Documentation 1 Table of Contents Welcome to the BeetleEye Application... 6 Overview... 6 Navigation... 6 Access BeetleEye... 6 Update account information...

More information

SAP Jam Communities What's New 1808 THE BEST RUN. PUBLIC Document Version: August

SAP Jam Communities What's New 1808 THE BEST RUN. PUBLIC Document Version: August PUBLIC Document Version: August 2018 2018-10-26 2018 SAP SE or an SAP affiliate company. All rights reserved. THE BEST RUN Content 1 Release Highlights....3 1.1 Anonymous access to public communities....4

More information

AuraPlayer Server Manager User Guide

AuraPlayer Server Manager User Guide AuraPlayer Server Manager User Guide AuraPlayer Support Team Version 2 2/7/2011 This document is the sole property of AuraPlayer Ltd., it cannot be communicated to third parties and/or reproduced without

More information

Exploiting and Defending: Common Web Application Vulnerabilities

Exploiting and Defending: Common Web Application Vulnerabilities Exploiting and Defending: Common Web Application Vulnerabilities Introduction: Steve Kosten Principal Security Consultant SANS Instructor Denver OWASP Chapter Lead Certifications CISSP, GWAPT, GSSP-Java,

More information

Adobe Document Cloud esign Services. for Salesforce Version 17 Installation and Customization Guide

Adobe Document Cloud esign Services. for Salesforce Version 17 Installation and Customization Guide Adobe Document Cloud esign Services for Salesforce Version 17 Installation and Customization Guide 2015 Adobe Systems Incorporated. All rights reserved. Last Updated: August 28, 2015 Table of Contents

More information

1/ , DNN Sharp

1/ , DNN Sharp / Contents Version 1.0.0, Released Jul 4, 2014 www.dnnsharp.com 1/35 2014, DNN Sharp www.dnnsharp.com / Contents Contents What is DNN API Endpoint?... 5 Key Features... 5 Support... 5 Getting Started...

More information

Bootstrap your APEX authentication & authorisation. a presentation by

Bootstrap your APEX authentication & authorisation. a presentation by Bootstrap your APEX authentication & authorisation a presentation by Who am I? Richard Martens independant Consultant since 2012 smart4apex founding member (2010) oracle since 2002 (Oracle 8i) PL/SQL,

More information

MyEricsson Administration Manual

MyEricsson Administration Manual MyEricsson Administration Manual Background The MyEricsson e-business portal is a free of charge interface in Ericsson s collaboration with external parties. MyEricsson is a critical success factor that

More information

How to Configure Authentication and Access Control (AAA)

How to Configure Authentication and Access Control (AAA) How to Configure Authentication and Access Control (AAA) Overview The Barracuda Web Application Firewall provides features to implement user authentication and access control. You can create a virtual

More information

Contents Using the Primavera Cloud Service Administrator's Guide... 9 Web Browser Setup Tasks... 10

Contents Using the Primavera Cloud Service Administrator's Guide... 9 Web Browser Setup Tasks... 10 Cloud Service Administrator's Guide 15 R2 March 2016 Contents Using the Primavera Cloud Service Administrator's Guide... 9 Web Browser Setup Tasks... 10 Configuring Settings for Microsoft Internet Explorer...

More information

User Guideline v 2.1. For assistance please contact Grapevine on or

User Guideline v 2.1. For assistance please contact Grapevine on or SMS Broadcast User Guideline v 2.1 Support : Feedback : For assistance please contact Grapevine on +27 21 702 3333 or email support@vine.co.za Please email info@vine.co.za with your comments and feedback

More information

Perceptive Matching Engine

Perceptive Matching Engine Perceptive Matching Engine Advanced Design and Setup Guide Version: 1.0.x Written by: Product Development, R&D Date: January 2018 2018 Hyland Software, Inc. and its affiliates. Table of Contents Overview...

More information

API Reference Manual

API Reference Manual FUJITSU Cloud Service K5 API Reference Manual Version.5 FUJITSU LIMITED Preface Purpose of This Document This guide describes the specification of the API (Application Programming Interface) provided by

More information

X-Road Message Protocol for REST

X-Road Message Protocol for REST X-Road Message Protocol for REST XRDDEV-121 - As an X-Road user I want that a draft version of X-Road Message Protocol for REST is created so that I know how REST clients and services will communicate

More information

Five9 Plus Adapter for Agent Desktop Toolkit

Five9 Plus Adapter for Agent Desktop Toolkit Cloud Contact Center Software Five9 Plus Adapter for Agent Desktop Toolkit Administrator s Guide September 2017 The Five9 Plus Adapter for Agent Desktop Toolkit integrates the Five9 Cloud Contact Center

More information

LAE 5.0 Logistics Manager Quick Start Guide

LAE 5.0 Logistics Manager Quick Start Guide LAE 5.0 Logistics Manager Quick Start Guide Version 0.7 Copyright THE CONTENTS OF THIS DOCUMENT ARE THE COPYRIGHT OF LAVASTORM ANALYTICS LIMITED. ALL RIGHTS RESERVED. THIS DOCUMENT OR PARTS THEREOF MAY

More information

ForeScout Extended Module for Web API

ForeScout Extended Module for Web API ForeScout Extended Module for Web API Version 1.2.1 and above Table of Contents About This Module... 3 What to Do... 3 Requirements... 3 CounterACT Software Requirements... 3 ForeScout Module License Requirements...

More information