HappyFox API Technical Reference

Size: px
Start display at page:

Download "HappyFox API Technical Reference"

Transcription

1 HappyFox API Technical Reference API Version 1.0 Document Version , Tenmiles Corporation

2 Copyright Information Under the copyright laws, this manual may not be copied, in whole or in part. Your rights to the software are governed by the HappyFox license agreement. The HappyFox logo is a trademark of Tenmiles Technologies Pvt Ltd, registered in India. Every effort has been made to ensure that the material in this manual is accurate. Other company names mentioned in this manual are trademarks of their respective companies. Mention of third-party products is for informational purposes only and constitutes neither an endorsement nor recommendation. Tenmiles Technologies Pvt. Ltd. assumes no responsibility with regard to the performance or use of these products. Tenmiles Technologies Pvt Ltd, 1A, Jhaver plaza, Nungambakkam, Chennai

3 HappyFox API - Technical Reference Table of Contents 1 Getting Started Introduction Requirements Documentation Conventions Protocols, Data Formats and Mechanisms API Version Resource URIs Base URI Request Methods Authentication Throttling Request Content Types Response Content Types Data Types NULL Values Paginated Lists for Collection Resources Parameters Paginated List - Structure Page Info - Inner Data Structure Data Validation Errors Field Errors - Structure Resources And Operations Ticket Category - Resource Operations Reading All Categories Reading One Category Data Structures Ticket Category - Structure Ticket Status - Resource Operations Reading All Statuses Reading One Status Data Structures Ticket Status - Structure Ticket Priority - Resource Operations Reading All Priorities Reading One Priority Data Structures Ticket Priority - Structure Staff - Resource Operations Reading All Staff Reading One Staff By ID Reading One Staff By Data Structures Staff - Structure User - Resource...15

4 3.5.1 Operations Reading All Users Reading One User By ID Reading One User By Data Structures User - Structure Ticket - Resource Operations Reading All Tickets Reading One Ticket Create A Ticket Add A Staff Update Add A Staff Private Note Add A User Reply Data Structures Ticket - Structure Ticket Update - Inner Data Structure Ticket Update By - Inner Data Structure Ticket Message- Inner Data Structure Ticket Attachment - Inner Data Structure Ticket Status Change - Inner Data Structure Ticket Priority Change - Inner Data Structure Ticket Assignee Change - Inner Data Structure Ticket Category Change - Inner Data Structure Ticket Due Date Change - Inner Data Structure Create Ticket - Request Data Structure Create Ticket Using User & Name - Request Data Structure Add Staff Update - Request Data Structure Add Staff Private Note - Request Data Structure Add User Reply - Request Data Structure Attachments - File Upload Request Custom Fields Operations Reading All User Custom Fields Reading One User Custom Fields Reading All Ticket Custom Fields Reading One Ticket Custom Field Types Custom Field Types Custom Field Choice Types Data Structures User Custom Field Structure Ticket Custom Field - Structure Ticket Custom Fields To Category - Inner Data Structure Choice Item - Inner Data Structure Multiple Choice Item - Inner Data Structure Custom Field Value - Inner Data Structure Notes Common Information For Setting Ticket / User Custom Field Values Ticket Custom Field Values For Create Ticket User Custom Field Values For Create Ticket...28

5 1 Getting Started 1.1 Introduction The API provided by the Helpdesk is a RESTful web service. It supports operations like creating a ticket, adding updates to a ticket, listing tickets and users of the Helpdesk, etc. It supports JSON, YAML, XML, Form Urlencoded and Multipart Form Data formats. 1.2 Requirements The API requires following skills in any programming language 1. Making HTTP requests (using and POST HTTP methods as a minimum requirement). 2. Doing HTTP Basic Authentication. 3. Generating and reading data in any one of the formats - JSON, YAML or XML 4. Optionally making HTTP POST requests using content type of "multipart/form-data" (needed for ticket attachments) 1.3 Documentation Conventions 1. The documentation indicates parameters that need to be replaced with actual values using the format <parameter_name>. The entire string including the enclosing < and > should be replaced. For example: if the parameter is < > it should be replaced with the required address

6 2 Protocols, Data Formats and Mechanisms This section of the document describes the communication protocol, data formats and application mechanisms used in the API. 2.1 API Version The resources and operations provided by the API will change over time as new features are added or existing features are modified. In order to maintain compatibility between the API clients and server each version of the API has a designated a version string. This string has to be specified as part of all the requests sent to the server. See Resource URIs for details on how to send the version number. 2.2 Resource URIs The URIs used by the API have a common base URI followed by the response data format and finally followed by the resource or collection URI. For Example, In is the Base URI <response_format>/ is a response data format like json or yaml or xml tickets/ is the Resource URI Base URI The base URI is composed of the following parts 1. HTTP or HTTPS protocol specifier 2. API server hostname 3. API server port number (optional defaults to port 80) 4. API version string 2.3 Request Methods The following HTTP methods are used to perform operations on resources provided by the API. NOTE: not all resources support all the listed operations, see the documentation of each resource for the supported methods Operation

7 POST PUT DELETE Retrieve a element or list of elements Create a new element or a child entry in a element Update a element Delete a element 2.4 Authentication The API requires a "API Key" and "Auth Code" pair for access. Contact the Helpdesk Admin for access details. The server uses HTTP Basic Authentication with the "API Key" as username and "Auth Code" as the password. The authentication realm is "API". The API server returns HTTP response code 401 in case of authorization required or login failure. SECURITY NOTES: 1. Credentials are passed as plain-text in HTTP Basic Authentication, therefore it is recommended to use SSL/TLS if the API is used over the Internet. 2. It is not recommended to invoke the API directly from browser using Javascript as this would require the "API Key" and "Auth Code" to be present on the browser side. Instead the API should be invoked from the web application server. 2.5 Throttling The API server limits the number of requests that can be sent during a interval of time. There are independent limits for read and write operations. Contact the Helpdesk Admin to know the current limits and for changing them to meet requirements. In case the request limits are exceeded the API server returns HTTP response code 503 along with the time to wait before retrying in the response body. 2.6 Request Content Types The following data formats are supported by the API server when data is sent to it for POST and PUT operations. Any of the data formats can be used provided the correct Content-Type is set in the HTTP request header. NOTE: file uploads are only supported with Multipart Form Data. Request Format Content-Type File Upload

8 JSON application/json NO YAML application/x-yaml NO Form Urlencoded application/x-www-form-urlencoded NO Multipart Form Data multipart/form-data YES 2.7 Response Content Types The following data formats are supported for response data sent back by the API server. The required data format is specified as the <response_format> mentioned under Resource URIs Response Format Specified in URI as Response Content-Type JSON json application/json YAML yaml application/x-yaml XML xml application/xml 2.8 Data Types These are the basic data types that are used in the API. Using these types more complex data structures for the resources are built. Type String Integer ID Float Boolean DateTime Date String type with Unicode support Signed 64 bit integral number Description Special type of Integer with minimum value 1, Will be unique within each resource type Floating point number True/False type Combined date and time in the ISO 8601 extended format of YYYY- MM-DD HH:MM:SS.ssssss NOTES: 1) all DateTime values in the API are in UTC timezone 2) the decimal part represented by ssssss is optional 3) a space separator is used between the date and time values Date in the ISO 8601 extended format of YYYY-MM-DD NOTE: all Date values in the API are in UTC timezone 2.9 NULL Values Some of the fields in a resource may be optional or currently absent. The values of these fields are represented as a special NULL value. This value maps to corresponding equivalents in the data formats as listed below Response Format NULL Value Representation

9 JSON YAML XML null null Element attribute null="true" 2.10 Paginated Lists for Collection Resources Some of the collection resources provided by the API may return a large volume of elements. In these cases the API imposes a upper limit on the number elements that can be returned in a single collection read request. By specifying a page size (lesser than or equal to the upper limit) and a corresponding page number as parameters, the collection can be split the into a smaller number of elements and progressively retrieved from the API server. The response from the API server contains information about the page split and the actual data as described below Parameters size Integer The number of items per page (limited to the maximum defined for the particular collection resource) page Integer The number of the page required Paginated List - Structure This data structure contains information and data from the paginated list page_info Page Info Information about the pagination data List of Elements The list of elements retrieved from the collection Page Info - Inner Data Structure This inner data structure is used in the "page_info" field of a Paginated List count Integer Number of elements returned start_index Integer The index of the first element in the returned subset end_index Integer The index of the last element in the returned subset last_index Integer The index of the last element in the entire

10 collection page_count Integer Number of pages for the given page size 2.11 Data Validation Errors The API server performs validation on the data submitted via POST and PUT requests. In case the data validation fails, the API server returns HTTP response code 400 along with error information in the response body. The error information response data is a List of Field Errors that contains information about data validation errors in individual fields as well as any errors that apply to the entire request (like errors that are not dependent on individual fields) Field Errors - Structure This data structure contains the field name and the list of errors messages for the field. field String The name of the field. (For errors that pertain to the entire request and not to a particular field, the field name will be " all ") errors List of String One or more errors related to the field value

11 3 Resources And Operations This section of the document describes the various REST element and collection resources provided by the API and the operations that can be performed on them. 3.1 Ticket Category - Resource A Ticket Category is a grouping of tickets based on a common attribute like ticket purpose, product or service, support type or department Operations Reading All Categories <base_uri>/<response_format>/categories/ List of Ticket Category Reading One Category <base_uri>/<response_format>/category/<id>/ Ticket Category Data Structures Ticket Category - Structure This data structure contains information about a ticket category id ID Unique numerical identifier name String Name of the category description String Short description about the category public Boolean If True, visible to users, else only visible to staff

12 3.2 Ticket Status - Resource A Ticket Status describes the current status of a ticket Operations Reading All Statuses <base_uri>/<response_format>/statuses/ List of Ticket Status Reading One Status <base_uri>/<response_format>/status/<id>/ Ticket Status Data Structures Ticket Status - Structure This data structure contains information about a ticket status id ID Unique numerical identifier name String Name of the status behavior String Either "pending" or "completed" to indicate the completed state of the ticket default Boolean If True, this status is the default for newly created tickets if the status is not specified

13 3.3 Ticket Priority - Resource A Ticket Priority describes the current importance of a ticket Operations Reading All Priorities <base_uri>/<response_format>/priorities/ List of Ticket Priority Reading One Priority <base_uri>/<response_format>/priority/<id>/ Ticket Priority Data Structures Ticket Priority - Structure This data structure contains information about a ticket priority id ID Unique numerical identifier name String Name of the priority default Boolean If True, this priority is the default for newly created tickets if the priority is not specified

14 3.4 Staff - Resource A Staff is a person handling Helpdesk duties like responding to incoming tickets, solving the requests / problems covered in the tickets Operations Reading All Staff Retrieve a list of all staff <base_uri>/<response_format>/staff/ List of Staff Reading One Staff By ID Retrieve details of a staff using their ID <base_uri>/<response_format>/staff/<id>/ Staff Reading One Staff By Retrieve details of a staff using the their address <base_uri>/<response_format>/staff/< >/ Staff Data Structures Staff - Structure This data structure contains information about a Helpdesk staff id ID Unique numerical identifier String address of the Staff name String Full name of the Staff

15 3.5 User - Resource A User is a person opening a ticket on the Helpdesk Operations Reading All Users Additional Params <base_uri>/<response_format>/users/? size=<size>&page=<page> Paginated List of User size: number of items per page (minimum 10, maximum 50, default 10) page: the number of the page required Reading One User By ID Retrieve details of a user using the their ID <base_uri>/<response_format>/user/<id>/ User Reading One User By Retrieve details of a user using the their address <base_uri>/<response_format>/user/< >/ User Data Structures User - Structure This data structure contains information about a user of the Helpdesk id ID Unique numerical identifier String address of the user name String Full name of the user custom_fields List of Custom Field Value The list of custom field values of the user

16 3.6 Ticket - Resource A Helpdesk request created by a User Operations Reading All Tickets Additional Params <base_uri>/<response_format>/tickets/? size=<size>&page=<page> Paginated List of Ticket size: number of items per page (minimum 10, maximum 50, default 10) page: the number of the page required Reading One Ticket <base_uri>/<response_format>/ticket/<id>/ Ticket Create A Ticket To create a ticket make a POST request to the below with request data encoded in one of the supported formats. On success it returns the newly created ticket. NOTE: file attachments are supported only when using Multipart Form Data Request Data <base_uri>/<response_format>/tickets/ POST Create Ticket or Create Ticket Using User & Name Ticket Add A Staff Update To add a staff update make a POST request to the below with request data encoded in one of the supported formats. On success it returns the modified ticket. NOTE: file attachments are supported only when using Multipart Form Data Request Data <base_uri>/<response_format>/ticket/<id>/staff_update/ POST Add Staff Update Ticket

17 Add A Staff Private Note To add a staff private note make a POST request to the below with request data encoded in one of the supported formats. On success it returns the modified ticket. Request Data <base_uri>/<response_format>/ticket/<id>/staff_pvtnote/ POST Add Staff Private Note Ticket Add A User Reply To add a user reply make a POST request to the below with request data encoded in one of the supported formats. On success it returns the modified ticket. NOTE: file attachments are supported only when using Multipart Form Data Request Data <base_uri>/<response_format>/ticket/<id>/user_reply/ POST Add User Reply Ticket Data Structures Ticket - Structure This data structure contains information about a ticket in the Helpdesk id ID Unique numerical identifier subject String The subject of the ticket category Category The category under which the ticket is present status Status The current status of the ticket priority Priority The current priority of the ticket user User The user who created the ticket assigned_to Staff The staff currently assigned created_at Timestamp The time when the ticket was created last_updated_at Timestamp The time when the ticket was last update last_accessed_at Timestamp The time when the ticket was last accessed last_user_reply_at Timestamp The time when a user last replied to a ticket last_staff_reply_at Timestamp The time when a staff last replied to a ticket time_spent Integer Total time spent by staff on the ticket

18 due_date Date The due date for completion of the ticket updates custom_fields List of Ticket Update List of Custom Field Value Ticket Update - Inner Data Structure The list of updates that were done on a ticket The list of custom fields values in the ticket This is a inner data structure present in the "updates" field of Ticket. It is used to describe the updates done on the ticket. timestamp DateTime The time when the update was added by message status_change priority_change assignee_change category_change due_date_change time_spent Ticket Update By Ticket Message Ticket Status Change Ticket Priority Change Ticket Assignee Change Ticket Category Change Ticket Due Date Change Integer By who was the ticket updated Details of the message The IDs of the old and new Statuses The IDs of the old and new Priorities The IDs of the old and new Staff The IDs of the old and new categories The the old and new due dates Time spent by staff on the ticket Ticket Update By - Inner Data Structure This is a inner data structure present in the "by" field of Ticket Update. It is used to describe the source of the update. type String "staff" or "user" or "smartrule" to indicate the who updated the ticket id ID ID of the corresponding staff/user/smartrule

19 Ticket Message- Inner Data Structure This is a inner data structure present in the "message" field of Ticket Update. It is used to describe the message update on a ticket. subject String The subject of the message text String The message text in plain-text format html String The message text in HTML format attachments List of Ticket Attachment The file attachments for this message message_type String p - Private Note f - Forward null staff/customer update cc_list String Comma separated list of addresses bcc_list String Comma separated list of addresses forward_list String Comma separated list of addresses to which the ticket is forwarded and it's present only for forwarded messages i.e. message_type = f Ticket Attachment - Inner Data Structure This is a inner data structure present in the "attachments" field of Ticket Message. It is used to describe the file attachments for a message. filename String The name of the file url String The where the attachment can be accessed Ticket Status Change - Inner Data Structure This is a inner data structure present in the "status_change" field of Ticket Update. It is used to describe the status change of a ticket. old ID ID of the old status new ID ID of the new status Ticket Priority Change - Inner Data Structure This is a inner data structure present in the "priority_change" field of Ticket Update. It is used to describe the priority change of a ticket.

20 old ID ID of the old priority new ID ID of the new priority Ticket Assignee Change - Inner Data Structure This is a inner data structure present in the "assignee_change" field of Ticket Update. It is used to describe the change of a ticket's assigned staff. old new ID ID ID of the old staff ID of the new staff Ticket Category Change - Inner Data Structure This is a inner data structure present in the "category_change" field of Ticket Update. It is used to describe the category change of a ticket. old ID ID of the old category new ID ID of the new category Ticket Due Date Change - Inner Data Structure This is a inner data structure present in the "due_date_change" field of Ticket Update. It is used to describe the change of a ticket due date. old Date Old due date new Date New due date Create Ticket - Request Data Structure This data structure contains information required to create a ticket. NOTE: Any custom fields required for the ticket need to be appended to the list below. See Ticket Custom Field Values For Create Ticket for information. subject String The ticket subject text String The ticket message in plain-text format attachments Attachments The file attachments for this ticket

21 category ID ID of the ticket category priority ID ID of the ticket priority user ID ID of the user creating the ticket Create Ticket Using User & Name - Request Data Structure This data structure contains information required to create a ticket. This variation uses the and name of a user. If the already exists in the Helpdesk, the corresponding user is used, else a new user is created. NOTE: Any custom fields required for the ticket and user need to be appended to the list below. See Ticket Custom Field Values For Create Ticket and User Custom Field Values For Create Ticket for information. subject String The ticket subject text String The ticket message in plain-text format attachments Attachments The file attachments for this ticket category ID ID of the ticket category priority ID ID of the ticket priority String address of the user name String Full name of the user Add Staff Update - Request Data Structure This data structure contains information required to add an staff update to a ticket. staff ID ID of the staff adding this update subject String The update subject text String The update message in plain-text format cc String Comma separated list of addresses bcc String Comma separated list of addresses attachments Attachments The file attachments for this update status priority assignee ID ID ID ID of the ticket's new status ID of the ticket's new priority ID of staff the ticket is reassigned to time_spent Integer Time spent by the staff on this ticket

22 due_date tags Date String New due date for the ticket Comma separated list of tags notify_user Boolean If True, send notification to the user about this update Add Staff Private Note - Request Data Structure This data structure contains information required to add an staff private note to a ticket. staff ID ID of the staff adding this update subject String New subject for the ticket text String The update message in plain-text format status priority time_spent due_date tags alert_to ID ID Integer Date String ID ID of the ticket's new status ID of the ticket's new priority Time spent by the staff on this ticket New due date for the ticket New tags as comma separated list Add User Reply - Request Data Structure ID of a staff to send notification to (cannot be the same as the ID used for the staff field) This data structure contains information required to add an user reply to a ticket. user ID ID of the user sending this reply text String The reply message in plain-text format cc String Comma separated list of addresses bcc String Comma separated list of addresses attachments Attachments The file attachments for this reply Attachments - File Upload Request This section describes the request format to be used for upload file attachments for

23 creating a ticket or in a reply/update. File uploads are only supported with Multipart Form Data format. To upload a file, construct the request as documented at (check if library functions are available in your programming languages to prepare Multipart Form Data requests) To upload multiple files, repeat the "attachments" field as required.

24 3.7 Custom Fields Custom fields allow additional data to be added to the Helpdesk as required. Custom fields can be defined for independently for users and tickets. For example, a phone number custom field can be added for users Operations Reading All User Custom Fields <base_uri>/<response_format>/user_custom_fields/ List of User Custom Field Reading One User Custom Fields <base_uri>/<response_format>/user_custom_field/<id>/ User Custom Field Reading All Ticket Custom Fields <base_uri>/<response_format>/ticket_custom_fields/ List of Ticket Custom Field Reading One Ticket Custom Field <base_uri>/<response_format>/ticket_custom_field/<id>/ Ticket Custom Field Types Custom Field Types Custom fields can be of the following data types Custom Field Type text number choice multiple_choice Data Type Of Value String Float String List of String

25 Custom Field Choice Types A custom field's choice can be of the following types based on the type of the custom field Custom Field Type text number choice multiple_choice Value for Choices NULL NULL List of Choice Item List of Multiple Choice Item Data Structures User Custom Field Structure This data structure contains information about a custom field defined for users id ID Unique numerical identifier name String Name of the custom field type String A type as listed in Custom Field Types depends_on_choice ID ID of the choice that this custom field depends on required Boolean If true, this field has to be filled in when creating a new ticket visible_to_staff_only Boolean If true, this field is private to staff alone and should not be shown to the users choices Depends on type as listed in Custom Field Choice Types Choices for "choice" and "multiple_choice" custom fields, NULL for other types order Integer The order in which to show custom fields during data entry or display Ticket Custom Field - Structure This data structure contains information about a custom field defined for tickets. Each ticket category can have its own sub-set of ticket custom fields, this information is contained in the "categories" field of the data structure. id ID Unique numerical identifier name String Name of the custom field type Custom Field Type A type as listed in Custom Field Types depends_on_choice ID ID of the choice that this custom field

26 depends on required Boolean If true, this field has to be filled in when creating a new ticket visible_to_staff_only Boolean If true, this field is private to staff alone and should not be shown to the users choices Depends on type as listed in Custom Field Choice Types The choices for "choice" and "multiple_choice" custom fields, NULL for other types compulsory_on_completed Boolean If true, this field has to be filled in before the ticket can be set to any of the completed Status categories List of Ticket Custom Fields To Category Information about which categories this custom field is present in and the display order Ticket Custom Fields To Category - Inner Data Structure This is a inner data structure present in the "categories" field of Ticket Custom Field. It is used to define which ticket categories the ticket custom field is associated with. category ID ID of the category in which the Ticket Custom Field appears order Integer The order in which to show custom fields during data entry or display Choice Item - Inner Data Structure This is a inner data structure present in the "choices" field of User Custom Field and Ticket Custom Field. It is used to define which choices are defined in this "choice" type custom field. id ID Unique numerical identifier text String The text of the choice dependant_fields List of ID IDs of the custom fields that depend on this choice Multiple Choice Item - Inner Data Structure This is a inner data structure used for the "choices" field of User Custom Field and Ticket Custom Field. It is used to define which choices are defined in this "multiple_choice" type custom field.

27 id ID Unique numerical identifier text String The text of the choice Custom Field Value - Inner Data Structure This is a inner data structure used for the "custom_fields" field of User and Ticket. It is used to define the value of the custom field. name String Name of the custom field type String A type as listed in Custom Field Types value Notes Depends on type as listed in Custom Field Types Value of the custom field Common Information For Setting Ticket / User Custom Field Values 1. When the "depends_on_choice" field of a custom field set to a non-null value, it is applicable only when the corresponding choice is selected. The "dependant_fields" field of Choice Item can also be used to determine which custom fields are applicable when the choice is selected 2. Values for "multiple_choice" type custom fields should be sent as multiple fields with the same field name when using Form Urlencoded and Multipart Form Data formats. The values can be sent as List for JSON and YAML formats Ticket Custom Field Values For Create Ticket 1. All the points in Common Information For Setting Ticket / User Custom Field Values 2. The values for ticket custom fields should be appended to the fields for Create Ticket 3. The value for a ticket custom field should be sent using a field name constructed from the ID of the ticket custom field in the following format "t-cf-<id>" 4. The ticket custom fields applicable to a ticket are dependent on the ticket's category. This can be determined from the "categories" field of Ticket Custom Field

28 User Custom Field Values For Create Ticket 1. All the points in Common Information For Setting Ticket / User Custom Field Values 2. The values for user custom fields should be appended to the fields for Create Ticket 3. The value for a user custom fields should be sent using a field name constructed from the ID of the user custom field in the following format "c-cf-<id>"

Administrator Manual. Last Updated: 15 March 2012 Manual Version:

Administrator Manual. Last Updated: 15 March 2012 Manual Version: Administrator Manual Last Updated: 15 March 2012 Manual Version: 1.6 http://www.happyfox.com Copyright Information Under the copyright laws, this manual may not be copied, in whole or in part. Your rights

More information

Administrator Manual. Last Updated: 15 March 2012 Manual Version:

Administrator Manual. Last Updated: 15 March 2012 Manual Version: Administrator Manual Last Updated: 15 March 2012 Manual Version: 1.6 http://www.helpdeskpilot.com Copyright Information Under the copyright laws, this manual may not be copied, in whole or in part. Your

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

All requests must be authenticated using the login and password you use to access your account.

All requests must be authenticated using the login and password you use to access your account. The REST API expects all text to be encoded as UTF-8, it is best to test by sending a message with a pound sign ( ) to confirm it is working as expected. If you are having issues sending as plain text,

More information

Alloy Navigator API USER S GUIDE. Integration with External Systems. Product Version: 7.0 Document Revision: 1.0 Date: November 30, 2015

Alloy Navigator API USER S GUIDE. Integration with External Systems. Product Version: 7.0 Document Revision: 1.0 Date: November 30, 2015 USER S GUIDE Alloy Navigator API Integration with External Systems Product Version: 7.0 Document Revision: 1.0 Date: November 30, 2015 Alloy Software Incorporated 88 Park Avenue, Unit 2B, Nutley, NJ 07110

More information

Quriiri HTTP MT API. Quriiri HTTP MT API v , doc version This document describes the Quriiri HTTP MT API version 1 (v1).

Quriiri HTTP MT API. Quriiri HTTP MT API v , doc version This document describes the Quriiri HTTP MT API version 1 (v1). Quriiri HTTP MT API This document describes the Quriiri HTTP MT API version 1 (v1). Sending messages Request types Security Request parameters Request examples JSON POST GET Response JSON response example

More information

MAINTENANCE HELPDESK SYSTEM USER MANUAL: CUSTOMER (STAFF) VERSION 2.0

MAINTENANCE HELPDESK SYSTEM USER MANUAL: CUSTOMER (STAFF) VERSION 2.0 MAINTENANCE HELPDESK SYSTEM USER MANUAL: CUSTOMER (STAFF) VERSION 2.0 TABLE OF CONTENTS NO TOPICS PAGES 1 LOGIN 1-3 2 CHANGE PASSWORD 4 3 CREATE NEW REQUEST 5-7 4 VIEW REQUEST 8-9 5 LOGOUT 10 6 FORGOT

More information

Black Box DCX3000 / DCX1000 Using the API

Black Box DCX3000 / DCX1000 Using the API Black Box DCX3000 / DCX1000 Using the API updated 2/22/2017 This document will give you a brief overview of how to access the DCX3000 / DCX1000 API and how you can interact with it using an online tool.

More information

Active Servicedesk Release Notes

Active Servicedesk Release Notes 8.00.00 Integration Added new history information related to external notifications Notifications Added config.xml to templates folder so specific email settings can be controlled using template scripts

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

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

API Documentation. Release Version 1 Beta

API Documentation. Release Version 1 Beta API Documentation Release Version 1 Beta Document Version Control Version Date Updated Comment 0.1 April 1, 2016 Initialize document 1 Release version PROMOTEXTER V3 BETA - API Documentation 1 Table of

More information

Microsoft Dynamics CRM Integration with Bomgar Remote Support

Microsoft Dynamics CRM Integration with Bomgar Remote Support Microsoft Dynamics CRM Integration with Bomgar Remote Support 2017 Bomgar Corporation. All rights reserved worldwide. BOMGAR and the BOMGAR logo are trademarks of Bomgar Corporation; other trademarks shown

More information

Introduction. Copyright 2018, Itesco AB.

Introduction. Copyright 2018, Itesco AB. icatch3 API Specification Introduction Quick Start Logging in, getting your templates list, logging out Doing Quick Search Creating a Private Prospects Setting template Posting Private Prospects query,

More information

Microsoft Dynamics CRM Integration with Remote Support

Microsoft Dynamics CRM Integration with Remote Support Microsoft Dynamics CRM Integration with Remote Support 2003-2018 BeyondTrust, Inc. All Rights Reserved. BEYONDTRUST, its logo, and JUMP are trademarks of BeyondTrust, Inc. Other trademarks are the property

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

The system has several front-end content discovery options. Here are examples of their interfaces (see more on our site at

The system has several front-end content discovery options. Here are examples of their interfaces (see more on our site at November, 2014 1 TrenDemon is a content marketing platform which helps boost conversions from your existing traffic and content using personalized recommendations and call to actions. The system has several

More information

Forescout. Open Integration Module: Web API. Configuration Guide. Version 1.4

Forescout. Open Integration Module: Web API. Configuration Guide. Version 1.4 Forescout Version 1.4 Contact Information Forescout Technologies, Inc. 190 West Tasman Drive San Jose, CA 95134 USA https://www.forescout.com/support/ Toll-Free (US): 1.866.377.8771 Tel (Intl): 1.408.213.3191

More information

LINK Mobility SMS REST API MT and Delivery Reports Version 1.3; Last updated September 21, 2017

LINK Mobility SMS REST API MT and Delivery Reports Version 1.3; Last updated September 21, 2017 LINK Mobility SMS REST API MT and Delivery Reports Version 1.3; Last updated September 21, 2017 For help, contact support@linkmobility.com The most up-to-date version of this document is available at http://www.linkmobility.com/developers/

More information

Helpdesk. Features. Module Configuration 1/49. On - October 14, 2015

Helpdesk. Features. Module Configuration 1/49. On - October 14, 2015 Helpdesk webkul.com/blog/magento-helpdesk/ On - October 14, 2015 Helpdesk module provides the support to their customers. It is a software suite that enables customer support to receive, process, and respond

More information

Integrate HEAT Software with Bomgar Remote Support

Integrate HEAT Software with Bomgar Remote Support Integrate HEAT Software with Bomgar Remote Support 2017 Bomgar Corporation. All rights reserved worldwide. BOMGAR and the BOMGAR logo are trademarks of Bomgar Corporation; other trademarks shown are the

More information

Please Note To use this extension, you must have UVdesk account. You can create a free UVdesk account here.

Please Note To use this extension, you must have UVdesk account. You can create a free UVdesk account here. UVdesk Helpdesk webkul.com/blog/uvdesk-magento2-free-helpdesk-ticket-system/ January 31, 2017 UVdesk Helpdesk is an amazing extension which allows the customers to create support tickets regarding their

More information

HEAT Software Integration with Remote Support

HEAT Software Integration with Remote Support HEAT Software Integration with Remote Support 2003-2018 BeyondTrust, Inc. All Rights Reserved. BEYONDTRUST, its logo, and JUMP are trademarks of BeyondTrust, Inc. Other trademarks are the property of their

More information

Technical Guide. REST API for Mobile Outbound SMS

Technical Guide. REST API for Mobile Outbound SMS Technical Guide REST API for Mobile Outbound SMS Munich +49 89 202 451 100 Singapore +65 6478 3020 London +44 207 436 0283 San Francisco +1 415 527 0903 sales@tyntec.com www.tyntec.com Table of Contents

More information

Technosoft HR Recruitment Workflow Developers Manual

Technosoft HR Recruitment Workflow Developers Manual Technosoft HR Recruitment Workflow Developers Manual Abstract This document outlines the technical aspects, deployment and customization of Technosoft HR BPM application. Technosoft Technical Team Table

More information

Grandstream Networks, Inc. Captive Portal Authentication via Facebook

Grandstream Networks, Inc. Captive Portal Authentication via Facebook Grandstream Networks, Inc. Table of Content SUPPORTED DEVICES... 4 INTRODUCTION... 5 CAPTIVE PORTAL SETTINGS... 6 Policy Configuration Page... 6 Landing Page Redirection... 8 Pre-Authentication Rules...

More information

REST SERVICE. Web Services API Version 1.5

REST SERVICE. Web Services API Version 1.5 REST SERVICE Web Services API Version 1.5 The information contained within this document is the property of PageOne Communications Ltd and may not be copied used or disclosed in whole or in part, except

More information

PRODUCT MANUAL. idashboards Reports Admin Manual. Version 9.1

PRODUCT MANUAL. idashboards Reports Admin Manual. Version 9.1 PRODUCT MANUAL idashboards Reports Admin Manual Version 9.1 idashboards Reports Admin Manual Version 9.1 No part of the computer software or this document may be reproduced or transmitted in any form or

More information

Grandstream Networks, Inc. Captive Portal Authentication via Twitter

Grandstream Networks, Inc. Captive Portal Authentication via Twitter Grandstream Networks, Inc. Table of Content SUPPORTED DEVICES... 4 INTRODUCTION... 5 CAPTIVE PORTAL SETTINGS... 6 Policy Configuration Page... 6 Landing Page Redirection... 8 Pre-Authentication Rules...

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

External Trigger SDK. for. Version 4.5

External Trigger SDK. for. Version 4.5 External Trigger SDK for Version 4.5 TOA Technologies 2014 Table of Contents 1 Introduction... 3 1.1 Document Scope...3 1.2 Target Audience... 3 1.3 Glossary... 3 2 External Trigger API Overview...5 2.1

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

Network Policy Controller UAM/RADIUS Guide

Network Policy Controller UAM/RADIUS Guide Network Policy Controller UAM/RADIUS Guide 1. Introduction... 3 1.1. Terminology... 3 2. Web Authentication... 5 2.1. Redirect URL Parameters... 5 2.2. UAM Login URL... 5 2.3. UAM Logout URL... 6 3. UAM/RADIUS

More information

Grandstream Networks, Inc. Captive Portal Authentication via Facebook

Grandstream Networks, Inc. Captive Portal Authentication via Facebook Grandstream Networks, Inc. Table of Content SUPPORTED DEVICES... 4 INTRODUCTION... 5 CAPTIVE PORTAL SETTINGS... 6 Policy Configuration Page... 6 Landing Page Redirection... 8 Pre-Authentication Rules...

More information

WP Voting Plugin - Ohiowebtech Video Extension - Youtube Documentation

WP Voting Plugin - Ohiowebtech Video Extension - Youtube Documentation WP Voting Plugin - Ohiowebtech Video Extension - Youtube Documentation Overview This documentation includes details about the WP Voting Plugin - Video Extension Plugin for Youtube. This extension will

More information

E POSTBUSINESS API Login-API Reference. Version 1.1

E POSTBUSINESS API Login-API Reference. Version 1.1 E POSTBUSINESS API Login-API Reference Imprint Software and documentation are protected by copyright and may not be copied, reproduced, stored, translated, or otherwise reproduced without the written approval

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

Genesys Mobile Services API Reference. Stat Service API

Genesys Mobile Services API Reference. Stat Service API Genesys Mobile Services API Reference Stat Service API 7/7/2018 Contents 1 Stat Service API 1.1 Stat Request APIs 1.2 Extended Stat Request API 1.3 EWT APIs 1.4 Configuration 1.5 Subscribe to Statistic

More information

Essential Import Service

Essential Import Service Essential Import Service Interface Specification Version 2.0 March 2017 Contents Operation of the service Default callback listener Importing Microsoft Excel and CSV documents Operation of the service

More information

Crestron Virtual Control REST API

Crestron Virtual Control REST API Crestron Virtual Control REST API Programming Guide Crestron Electronics, Inc. Crestron product development software is licensed to Crestron dealers and Crestron Service Providers (CSPs) under a limited

More information

The Connector Version 2.0 Microsoft Project to Atlassian JIRA Connectivity

The Connector Version 2.0 Microsoft Project to Atlassian JIRA Connectivity The Connector Version 2.0 Microsoft Project to Atlassian JIRA Connectivity User Manual Ecliptic Technologies, Inc. Copyright 2011 Page 1 of 99 What is The Connector? The Connector is a Microsoft Project

More information

CSC Web Technologies, Spring Web Data Exchange Formats

CSC Web Technologies, Spring Web Data Exchange Formats CSC 342 - Web Technologies, Spring 2017 Web Data Exchange Formats Web Data Exchange Data exchange is the process of transforming structured data from one format to another to facilitate data sharing between

More information

Elevate Web Builder Modules Manual

Elevate Web Builder Modules Manual Table of Contents Elevate Web Builder Modules Manual Table Of Contents Chapter 1 - Getting Started 1 1.1 Creating a Module 1 1.2 Handling Requests 3 1.3 Custom DataSet Modules 8 Chapter 2 - Component Reference

More information

TABLE OF CONTENTS INTRODUCTION

TABLE OF CONTENTS INTRODUCTION KeyTalk - API Author MR vd Sman Creation date 14-March-2017 Last updated 7-January-2019 Document version 2.4.0 Minimal KeyTalk 5.5.0 server version Document status Qualified Product KeyTalk certificate

More information

Web Self Service Administrator Guide. Version 1.1.2

Web Self Service Administrator Guide. Version 1.1.2 Version 1.1.2 Web Self Service Administrator Guide Version 1.1.2 Copyright and Trademark Notice Use of the product documented in this guide is subject to your prior acceptance of the End User License Agreement.

More information

Postman User Guide. Document Reference: July Version: 2

Postman User Guide. Document Reference: July Version: 2 Postman User Guide Document Reference: 8314 July 2017 Version: 2 Version Number Date Author Changes 1 Sep 2015 Sam Smith 2 Jul 2017 Sam Smith Branding updated Page 1 Contents 1 Introduction... 3 2 Downloading...

More information

Ajax Ajax Ajax = Asynchronous JavaScript and XML Using a set of methods built in to JavaScript to transfer data between the browser and a server in the background Reduces the amount of data that must be

More information

Sophos Mobile. app groups interface guide. Product Version: 8.5

Sophos Mobile. app groups interface guide. Product Version: 8.5 app groups interface guide Product Version: 8.5 Contents About this guide... 1 App reputation support...2 The app groups web service interface... 3 API description... 5 Log in...5 Log out...6 Create app

More information

Amazon Simple Service. API Reference API Version

Amazon Simple  Service. API Reference API Version Amazon Simple Email Service API Reference Amazon Simple Email Service: API Reference Copyright 2015 Amazon Web Services, Inc. and/or its affiliates. All rights reserved. The following are trademarks of

More information

The Open Mobile Provisioning API

The Open Mobile Provisioning API The Open Mobile Provisioning API V E R S I O N 3. 2 J U N E 2 0 1 4 Corporate Headquarters ipass Inc. 3800 Bridge Parkway Redwood Shores, CA 94065 USA www.ipass.com +1 650-232-4100 +1 650-232-0227 fx TABLE

More information

Hostopia WebMail Help

Hostopia WebMail Help Hostopia WebMail Help Table of Contents GETTING STARTED WITH WEBMAIL...5 Version History...6 Introduction to WebMail...6 Cookies and WebMail...6 Logging in to your account...6 Connection time limit...7

More information

USER GUIDE. EBMS SECURE MailGate

USER GUIDE. EBMS SECURE  MailGate USER GUIDE EBMS SECURE EMAIL MailGate USER REGISTRATION When a secure email is sent to a new user, Secure Mailbox generates a notification and sends it to their email account. The notification contains

More information

ovirt SSO Specification

ovirt SSO Specification ovirt SSO Specification Behavior Changes End user visible changes The password delegation checkbox at user portal login is now a profile setting. Sysadmin visible changes Apache negotiation URL change

More information

Forthnet Mobile Platform - groupsms http interface v1.0 1 / 9

Forthnet Mobile Platform - groupsms http interface v1.0 1 / 9 Table of Contents Introduction... 2 Requirements... 2 Connecting to Forthnet Mobile Platform... 2 Message submission... 3 Client Request... 3 Parameters... 4 Parameter user... 4 Parameter pass... 4 Parameter

More information

release notes effective version 10.3 ( )

release notes effective version 10.3 ( ) Introduction We are pleased to announce that Issuetrak 10.3 is available today! 10.3 focuses on improved security, introducing a new methodology for storing passwords. This document provides a brief outline

More information

StorageGRID Webscale NAS Bridge Management API Guide

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

More information

ConnectWise Integration

ConnectWise Integration ConnectWise Integration Introduction This integration is a lengthy process however it s relatively simple to configure and should take no longer than 10 minutes. It will allow you to import all of the

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

also supports JSON output format for specific commands.

also supports JSON output format for specific commands. About, page 1 Using, page 2 Additional References, page 12 About On Cisco Nexus devices, command-line interfaces (CLIs) are run only on the device. improves the accessibility of these CLIs by making them

More information

LUCITY REST API INTRODUCTION AND CORE CONCEPTS

LUCITY REST API INTRODUCTION AND CORE CONCEPTS LUCITY REST API INTRODUCTION AND CORE CONCEPTS REST API OFFERINGS Lucity Citizen Portal REST API Lucity REST API Both products are included in our REST API Historically we also offered a COM API and a.net

More information

Acled API. User Guide. Richard Holmes February 2018 ACLED API - VERSION 2.0 COPYRIGHT

Acled API. User Guide. Richard Holmes   February 2018 ACLED API - VERSION 2.0 COPYRIGHT Acled API User Guide Richard Holmes https://ampersandstudio.uk/ February 2018 ACLED API - VERSION 2.0 COPYRIGHT 2018 1 Contents Acled API Introduction 4 API Access Detail 4 Sample API Calls and Responses

More information

Table of Contents. Developer Manual...1

Table of Contents. Developer Manual...1 Table of Contents Developer Manual...1 API...2 API Overview...2 API Basics: URL, Methods, Return Formats, Authentication...3 API Errors...4 API Response Examples...6 Get Articles in a Category...6 Get

More information

In this chapter we have described DM Configuration both in Policy Builder and Control Center.

In this chapter we have described DM Configuration both in Policy Builder and Control Center. In Policy Builder, page 1 In Control Center, page 15 Using REST APIs, page 37 In Policy Builder In this chapter we have described both in Policy Builder and Control Center. Note Any DM configuration changes

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

DEVELOPER GUIDE PIPELINE PILOT INTEGRATION COLLECTION 2016

DEVELOPER GUIDE PIPELINE PILOT INTEGRATION COLLECTION 2016 DEVELOPER GUIDE PIPELINE PILOT INTEGRATION COLLECTION 2016 Copyright Notice 2015 Dassault Systèmes. All rights reserved. 3DEXPERIENCE, the Compass icon and the 3DS logo, CATIA, SOLIDWORKS, ENOVIA, DELMIA,

More information

Integration Architecture Of SDMS

Integration Architecture Of SDMS Integration Architecture Of SDMS 20 May 2017 Version 1.0 (Rakesh Ranjan, Consultant-IT) Table of Content 1 ABOUT SDMS...2 2 OBJECTIVE & STRUCTURE OF THIS DOCUMENT...2 3 TRANSACTIONAL SERVICES...3 3.1 HIGH

More information

Enable Integration with Facebook

Enable Integration with Facebook Enable Integration with Facebook HappyFox's integration with "Facebook" converts all Posts or Private Messages sent to your Facebook page(s) into tickets in your Happyfox account. This allows you to interact

More information

Avaya Communications Process Manager Release 2.2 Web Portal Help for Administrative Users

Avaya Communications Process Manager Release 2.2 Web Portal Help for Administrative Users Avaya Communications Process Manager Release 2.2 Web Portal Help for Administrative Users Document No. 04-601163 August 2008 Issue 10 2008 Avaya Inc. All Rights Reserved. Notice While reasonable efforts

More information

cellip CELLIPS SMS INTERFACE DESCRIPTION HTTP GET INNEHÅLLSFÖRTECKNING

cellip CELLIPS SMS INTERFACE DESCRIPTION HTTP GET INNEHÅLLSFÖRTECKNING INNEHÅLLSFÖRTECKNING Innehållsförteckning... 1 1 Introduction... 2 1.1 Scope... 2 2 HTTP Get interface... 2 2.1 Mobile Terminated Messages... 2 2.1.1 Usage... 2 2.1.2 Parameters... 2 2.1.3 Codes... 4 2.1.4

More information

IBM. IBM Business Process Manager Express or Standard Edition V8.0 BPM Application Development

IBM. IBM Business Process Manager Express or Standard Edition V8.0 BPM Application Development IBM 000-276 IBM Business Process Manager Express or Standard Edition V8.0 BPM Application Development Download Full Version : http://killexams.com/pass4sure/exam-detail/000-276 2. use JavaScript APIs to

More information

Sophos Mobile app groups interface guide. Product version: 7.1

Sophos Mobile app groups interface guide. Product version: 7.1 Sophos Mobile app groups interface guide Product version: 7.1 Contents 1 About this guide...3 2 App reputation support...4 3 The app groups web service interface...5 4 API description...7 4.1 Log in...7

More information

CGI Subroutines User's Guide

CGI Subroutines User's Guide FUJITSU Software NetCOBOL V11.0 CGI Subroutines User's Guide Windows B1WD-3361-01ENZ0(00) August 2015 Preface Purpose of this manual This manual describes how to create, execute, and debug COBOL programs

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

TM-H6000V. WebConfig API User's Manual. Overview. Web API Specification. Reference. M Rev.A. Describes an overview of WebConfig API.

TM-H6000V. WebConfig API User's Manual. Overview. Web API Specification. Reference. M Rev.A. Describes an overview of WebConfig API. TM-H6000V WebConfig API User's Manual Overview Describes an overview of WebConfig API. Web API Specification Describes the web API specification. Reference Describes how to refer to and change setting

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

SAS Event Stream Processing 4.2: Security

SAS Event Stream Processing 4.2: Security SAS Event Stream Processing 4.2: Security Encryption on Sockets Overview to Enabling Encryption You can enable encryption on TCP/IP connections within an event stream processing engine. Specifically, you

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 6.5 Document Relevance and Accuracy This document is considered relevant to the Release stated on this title page and

More information

WhatsATool API - REST-Like Interface to WhatsATool Services

WhatsATool API - REST-Like Interface to WhatsATool Services Disclaimer This service and also mtms Solutions GmbH is not associated in any case with WhatsApp. WhatsApp is a registered Trademark owned by WhatsApp Inc. mtms is not related in any way with WhatsApp

More information

Informatica Cloud Spring REST API Connector Guide

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

More information

Understanding RESTful APIs and documenting them with Swagger. Presented by: Tanya Perelmuter Date: 06/18/2018

Understanding RESTful APIs and documenting them with Swagger. Presented by: Tanya Perelmuter Date: 06/18/2018 Understanding RESTful APIs and documenting them with Swagger Presented by: Tanya Perelmuter Date: 06/18/2018 1 Part 1 Understanding RESTful APIs API types and definitions REST architecture and RESTful

More information

GMA024F0. GridDB Web API Guide. Toshiba Digital Solutions Corporation 2017 All Rights Reserved.

GMA024F0. GridDB Web API Guide. Toshiba Digital Solutions Corporation 2017 All Rights Reserved. GMA024F0 GridDB Web API Guide Toshiba Digital Solutions Corporation 2017 All Rights Reserved. Introduction This manual describes GridDB WebAPI s function, configuration method, and notes. Please read this

More information

2N Helios IP HTTP API

2N Helios IP HTTP API 2N Helios IP HTTP API Konfigurační manuál Version 2.11 www.2n.cz The 2N TELEKOMUNIKACE a.s. is a Czech manufacturer and supplier of telecommunications equipment. The product family developed by 2N TELEKOMUNIKACE

More information

FaxCore API Reference A web based API for sending, receiving and managing faxes through the FaxCore network.

FaxCore API Reference A web based API for sending, receiving and managing faxes through the FaxCore network. FaxCore API Reference A web based API for sending, receiving and managing faxes through the FaxCore network. P a g e 2 Contents API Overview... 3 Authentication... 3 SendFax... 4 FaxStatus... 5 GetFaxList...

More information

We currently are able to offer three different action types:

We currently are able to offer three different action types: SMS Inbound Introduction SMS Inbound provides a simple to use interface for receiving inbound MMS messages. Inbound Message Actions Inbound Message Actions in SMS Inbound are things that our system can

More information

Quick Start Guide. Setup HappyFox in 5 minutes

Quick Start Guide. Setup HappyFox in 5 minutes Quick Start Guide Setup HappyFox in 5 minutes This Quick Start Guide will help you setup your HappyFox helpdesk in a jiffy. Learn to setup your support email, invite your support staff, setup your self-

More information

General. Analytics. MCS Instance Has Predefined Storage Limit. Purge Analytics Data Before Reaching Storage Limit

General. Analytics. MCS Instance Has Predefined Storage Limit. Purge Analytics Data Before Reaching Storage Limit Oracle Cloud Mobile Cloud Service Known Issues 18.1.3 E93163-01 February 2018 General MCS Instance Has Predefined Storage Limit Each MCS instance has a set storage space that can t be changed manually.

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

Ticketing Table of Contents:

Ticketing Table of Contents: Table of Contents: Manage Tickets Configure 362 Chapter 8 - Sadjadi et al. Introduction While deployed agents provide extremely useful information regarding the state of all managed machine, facilitating

More information

Bucket Intervals. Bucket Intervals List

Bucket Intervals. Bucket Intervals List You can use the API to add new, edit the name of an existing Bucket Interval, get a list of all of the configured, and delete existing. This API is represented on the User Interface by the Gadget. This

More information

Request Tracker. Set your password This can come in handy if you have to access RT from a computer that you do not have certificates on.

Request Tracker. Set your password This can come in handy if you have to access RT from a computer that you do not have certificates on. Request Tracker Request Tracker is the ticket tracking system that is used by many groups at MIT. It is a web and perl based tracking system developed by Best Practical. IS&T and the computing helpdesk

More information

Performance Analyser API

Performance Analyser API Performance Analyser API Documentation version 1.2 Contents 1 Introduction... 4 2 API Path... 4 3 Authentication... 5 4 Working with Accounts (Realms)... 6 5 Working with the API... 7 5.1 Dates... 7 5.2

More information

SmartFocus Cloud Service APIs

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

More information

Comodo One Software Version 3.7

Comodo One Software Version 3.7 rat Comodo One Software Version 3.7 Service Desk Administrator Guide Guide Version 3.15.020717 Comodo Security Solutions 1255 Broad Street Clifton, NJ 07013 Table of Contents 1 Introduction to Service

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

Zendesk Instructions for End-Users

Zendesk Instructions for End-Users Zendesk Instructions for End-Users Ver. 1.00 July, 2013 Ver. 1.00 July, 2013 Zendesk Instructions for End-Users Getting Started Registering & Logging in to Zendesk To submit and then track your support

More information

This tutorial will help you understand JSON and its use within various programming languages such as PHP, PERL, Python, Ruby, Java, etc.

This tutorial will help you understand JSON and its use within various programming languages such as PHP, PERL, Python, Ruby, Java, etc. About the Tutorial JSON or JavaScript Object Notation is a lightweight text-based open standard designed for human-readable data interchange. The JSON format was originally specified by Douglas Crockford,

More information

The production version of your service API must be served over HTTPS.

The production version of your service API must be served over HTTPS. This document specifies how to implement an API for your service according to the IFTTT Service Protocol. It is recommended that you treat this document as a reference and follow the workflow outlined

More information

Contents. Sync Installation Guide

Contents. Sync Installation Guide 1 Contents Contents... 2 Preface... 3 Prerequisites... 3 Installation... 4 Prepare File System... 4 Setup SQL Server... 4 Setup IIS web server... 4 Creating the Sync Application Pool... 4 Add the Sync

More information

etrac Company Documents Guide

etrac Company Documents Guide etrac Company Documents Guide Version: 5.0 Publish Date: 01/16/2019 Global DMS, 1555 Bustard Road, Suite 300, Lansdale, PA 19446 2019, All Rights Reserved. Table of Contents Introduction to etrac Company

More information

Managing System Administration Settings

Managing System Administration Settings This chapter contains the following sections: Setting Up the Outgoing Mail Server, page 1 Working with Email Templates, page 2 Configuring System Parameters (Optional), page 5 Updating the License, page

More information