API Reference Manual

Size: px
Start display at page:

Download "API Reference Manual"

Transcription

1 FUJITSU Cloud Service K5 API Reference Manual Version.5 FUJITSU LIMITED

2 Preface Purpose of This Document This guide describes the specification of the API (Application Programming Interface) provided by the FUJITSU Cloud Service K5. You are recommended to also refer to the following related manuals: - K5 API User Guide - K5 Portal User Guide Compliance with Export Control Regulations When exporting this document or providing it to a third party, check the export control laws and regulations of your country and the U.S. and take necessary procedures. Notices - The contents of this manual are subject to change without notice. - The contents of this manual shall not be reproduced without express written permission from FUJITSU LIMITED. - FUJITSU LIMITED shall bear no responsibility for any claims of violation of a third party's patent or other rights arising from the use of the data described in this document. i

3 Document history Version Date Edited places Description. Oct 7, API Execution Errors Update error messages. 3.2 API Execution Errors.2 Dec.22, Access Rights by Role Add the section. List of API 2.3. Get Access Token Modifications corresponding to the new function Update user authentication information.3 May.5, Get Access Token Add explanation.4 Aug 30, Get Access Token Add explanation.5 Jan 9, Get Access Token Modify explanation ii

4 Table of Contents Chapter API Outline... List of API... 2 Access Rights by Role... 3 Glossary Chapter 2 Authentication API... 5 Request Headers... 6 API Execution Errors... 6 API Specification Get access token Chapter 3 User management API... 0 Request Headers... API Execution Errors... API Specification Create new user Change user information Change user password Delete user Update user authentication information... 9 iii

5 Chapter API Outline

6 List of API No. API Group API Method URL Description Authentication User management Get access Get token for API POST token m/api/paas/auth/token authentication. Create user POST Create a new user. /v/api/users Change information of Change user PUT the contractor or the information /v/api/users specified user. Change user Change password of the PUT password /v/api/userspassword specified user. 5 Delete user DELETE Update user 6 authentication PUT information Delete the specified /v/api/users/?login_id=username user. Update user authentication method /v/api/usersauthenticationmethod of the contractor or a user. API character encoding is UTF-8. 2

7 Access Rights by Role Each user of the K5 Portal is assigned a Role that controls the operations the user is authorized to perform on the K5 Portal. (Refer to the 'K5 Portal User Guide' for detail.) Also for the use of APIs, access rights are assigned by role as shown below. API group API name Authntication Get Access Token User Management Operation object Operation object Operation object Oneself USER Oneself Contractor USER Oneself Contractor USER Create New User X X X X X X Change User Information * * X X Change User Password X X X X X Delete User X X X X X X Update user authentication information K5 common service Roles USER Contractor Administrator Developer X X X X X : Permitted X: Not Permitted *:Permitted with restrictions (See [Change user information ] below.) By API name, the roles to which the executions are permitted are shown below. [Create New User] - The Contractor and Administrator can create a user except with the role of Contractor. [Change user information] - The Administrator and Developer can change the information of one s own, including password. - The information of the Contractor which can be changed by an Administrator is only its password. - The Contractor can change his/her own information, except its user status. - The Contractor and Administrator can change the information of USERs (Administrator / Developer ). [Change user password] - Regardless of role, a user can change one s own password. [Delete user] - The Contractor and Administrator can delete a user with a role except Contractor. [Update user authentication information] - All users can update his/her own user authentication method. 3

8 Glossary Term User User name Role Explanation Person (or system, service) who uses or manages a function Unique ID of a user Authorization granted to a person or a group. Role of a user determines which API that user can execute. Role code Unique ID of a role 4

9 2 Chapter 2 Authentication API 5

10 Request Headers Request headers for authentication API No. Header Name Required Header value Content-Type Yes application/json 2 X-FCX-Client-Cert *See note Client certificate mapped to the user *Note: Required, in cases where Certificate and Password authentication is used. API Execution Errors API execution error information is returned in HTTP response body under json format. No. Format Item Type Cardinality Description errorlevel string.. Error level 2 framework object.. Framework object 3 systemerrorcode string.. System error code JSON 4 business object.. Business object [Body] 5 businesserrorinfo string.. Error message 6 responseerrorcode string.. Response error code 7 embeddedstring string array.. Additional information "errorlevel": "888", "framework": "systemerrorcode": "", "business": "businesserrorinfo": "Cannot create token from the specified user information.", "responseerrorcode": "RCM30802", "embeddedstring": [ ] 6

11 List of response errors No. HTTP status Error Information Error message Error reason 400 Request parameter error Parameter is invalid. Specified parameter: XXX * XXX is the parameter name Cannot create token Cannot create token from the specified user information Server error Failed to create token (Internal Error). Request parameter error (empty parameter, invalid length, invalid format ) User information specified in the request is invalid Internal server error 7

12 API Specification 2.3. Get access token. Request Parameter definition No. Format Item Required Cardinality Min. length Max. length Restrictions Description auth Yes Object Authentication object 2 identity Yes Object Identity object 3 password Yes Object Password object 4 user Yes Object User object 5 contract_number Yes See Note(*) Contract number of authentication user 6 name Yes See Note(*) User name of authentication JSON user [Body] 7 password Yes See Note(*) Password of authentication 8 timezone No - - See Note(*) Timezone *case-insensitive user If no timezone, a timezone other than 'UTC', or an invalid timezone is specified, 'JST' is automatically set. (*): Upper/Lower case alphanumeric characters. For more details please refer to K5 Portal User Guide (..2 Essential Information for the use of the K5 Portal) input restrictions. "auth": "identity": "password": "user": "contract_number":"xxxxxxxx", "name":"user-name", "password":"user-password", "timezone":"utc" 8

13 2. Response HTTP STATUS:20 Response body: No. Format Item Cardinality Description 2 JSON [Body] token.. Token object expires_at.. Expiration of an access token. The expiration from the time of an initial issuance is 30 minutes later. Timezone : 'UTC' if 'UTC' is specified in 'timezone' of. Request. 'JST' if other than 'UTC'. Format : 3 scope.. Token scope 4 user.. User object YYYY-mm-ddTHH:MM:SS.SSSZ (if 'UTC') YYYY-mm-ddTHH:MM:SS (if 'JST') 5 contract_number.. Contract number of authentication user 6 name.. User name of authentication user "token": "expires_at":" t03:20:42", "scope":"paas", "user": "contract_number":"xxxxxxxx", "name":"user-name" 9

14 3 Chapter 3 User management API 0

15 Request Headers API execution error information is returned in HTTP response body under json format. No. Header Name Required Header value Token Yes Access token acquired by executing Get access token API 2 Content-Type Yes application/json API Execution Errors API execution error information is returned in HTTP response body under json format. No. Format Item Type Cardinality Description errorlevel string.. Error level 2 framework object.. Framework object 3 systemerrorcode string.. System error code 4 JSON business object.. Business object 5 [Body] businesserrorinfo string.. Business error information 6 responseerrorcode string.. Response error code 7 embeddedstring string array.. Error message "errorlevel": "888", "framework": "systemerrorcode": "", "business": "businesserrorinfo": "BECSA0003", "responseerrorcode": "RCS0000", "embeddedstring": [ "Internal Server Error" ]

16 List of response errors No. HTTP status 400 Request parameter error Error Information Error message Error reason * XXX is the parameter name Delete contractor error Password check error - Parameter is insufficient. Required parameter: XXX - Parameter is required. Character count of parameter is invalid. Specified parameter: XXX The format of parameter is invalid. Specified parameter: XXX Could not delete user because the target user is a contractor. Password is of invalid format or does not satisfy password policy. Please try again. Password cannot be changed again within 24 hours since the last change. Please try again after 24 hours. Failed to change password. The old password was invalid Invalid user status Cannot change user information because user status of the target user is invalid Invalid token The specified access token is not valid. Insufficient parameters Input parameter check error (digit number fault) Input parameter format error (other than digit number) Try to delete a contractor Violate password policy Try to change password again within 24 hours Previous password error Try to change information of user whose status is invalid Access token is not valid Authorization error Authorization Error. Action not authorized Change contractor status error Unauthorized to change information of the specified Try to change user status of a contractor user Not found The target information does not exist. Target information not found Exclusive error Operation conflicts with another one. Target information has already been changed by another process Internal Server Error Internal Server Error. Consistency error, or other server errors 2

17 API Specification 3.3. Create new user. Request Parameter definition No. Format Item Required Cardinality Min. length Max. length Restrictions login_id Yes See Note (**) 2 user_description No See Note (**) 3 mailaddress Yes Proper address format (*) 4 user_status Yes.. Invalid (0) / Valid () JSON 5 password Yes See Note (**) [Body] 6 language_code Yes role_code Yes Japanese (ja) / English (en) Administrator (00),Developer (0) 8 user_last_name Yes.. 64 See Note (**) Description User name of the user to be created User description of the user to be created address of the user to be created User status of the user to be created Password of the user to be created Language code of the user to be created Role code of the user to be created Last name of the user to be created First name of the user to be 9 user_first_name Yes.. 64 See Note (**) created (*): For the detail of address format, please refer to K5 Portal User Guide (..2 Essential Information for the use of the K5 Portal) input restrictions. (**):Upper/Lower case alphanumeric characters. For more details, please refer to K5 Portal User Guide (..2 Essential Information for the use of the K5 Portal) input restrictions. "login_id": "fujitsu23", "user_description": "User description", "mailaddress": "abc@xyz.com", "user_status": "", "password": "Abcdefgh ", "language_code": "ja", "role_code": "00", "user_last_name": "Smith", "user_first_name": "John" 3

18 3. Response HTTP STATUS:200 Response body: No. Format Item Cardinality Description login_id.. User name of the newly created user 2 user_description.. User description of the newly created user 3 mailaddress.. address of the newly created user 4 user_status.. User status of the newly created user 5 Invalid (0) / Valid () JSON language_code.. Language code of the newly created user [Body] Japanese (ja) / English (en) 6 authentication_method.. Authentication method * This API returns fixed value: Password authentication (0) 7 user_last_name.. Last name of the newly created user 8 user_first_name.. First name of the newly created user "login_id": "fujitsu23", "user_description": "User description.", "mailaddress": "abc@xyz.com", "user_status": "", "language_code": "ja", "authentication_method ": "0", "user_last_name": "Smith", "user_first_name": "John" 4

19 3.3.2 Change user information. Request Parameter definition No. Format Item Required Cardinality Min. 2 JSON [Body] length Max. length Restrictions login_id Yes See Note (**) mailaddress No (*) Proper address format (***) Description User name of the target user New address 3 user_description No (*) See Note (**) New user description 4 5 language_code No (*) user_status No (*) 0.. Japanese (ja) / English (en) Invalid (0) / Valid () * Trying to change user status of a contractor will result in error New language code New user status 6 password No (*) See Note(**) New password 7 user_last_name No (*) See Note(**) New user Last name 8 user_first_name No (*) See Note (**) New user First name (*): At least one parameter must be set. Upper / Lower case alphanumeric characters. (**): Upper / Lower case alphanumeric characters. For more details, please refer to K5 Portal User Guide (..2 Essential Information for the use of the K5 Portal) input restrictions. (***): For the detail of address format, please refer to K5 Portal User Guide (..2 Essential Information for the use of the K5 Portal) input restrictions. "login_id": "fujitsu23", "mailaddress": "abc@xyz.com", "user_description": "User description.", "language_code": "ja", "user_status": "", "password":"abcdefgh ", "user_last_name": "Smith", "user_first_name": "John" 5

20 2. Response HTTP STATUS:200 Response body: No. Format Item Cardinality Description login_id.. User name of the target user language_code.. New language code 2 3 user_status.. New user status 4 mailaddress.. New address 5 JSON user_description.. New user description 6 [Body] user_last_name.. New user Last name 7 user_first_name.. New user First name 8 accesstoken_destruction_information_list.. User information whose token was cancelled. 9 customer_group_id.. Group ID to which the user belongs to. 0 login_id.. Login ID of the user. "login_id": "fujitsu23", "language_code": "ja", "user_status": "", "mailaddress": "abc@xyz.com", "user_description": "User description.", "user_last_name": "Smith", "user_first_name": "John" "accesstoken_destruction_information_list":[ "customer_group_id":"hvlgxxym", login_id":" fujitsu23" ] 6

21 3.3.3 Change user password. Request Parameter definition No. Format Item Required Cardinality Min. Max. Restrictions Description length length User name of the target login_id Yes See Note (*) user JSON 2 [Body] after_password Yes See Note (*) New password 3 before_password Yes See Note (*) Old password (*): Upper / Lower case alphanumeric characters. For more details, please refer to K5 Portal User Guide (..2 Essential Information for the use of the K5 Portal) input restrictions. "login_id": "fujitsu23", "after_password":"newpassword ", "before_password":"abcdefgh " 2. Response HTTP STATUS:200 Response body: No. Format Item Cardinality Description accesstoken_destruction_information_list.. User information whose token was JSON cancelled. 2 [BODY] customer_group_id.. Group ID to which the user belongs to. 3 login_id.. Login ID of the user. "accesstoken_destruction_information_list":[ "customer_group_id":"hvlgxxym", login_id":" fujitsu23" ] 7

22 3.3.4 Delete user. Request Parameter definition No. Format Item Required Cardinality Min. Max. Restrictions Description length length URL query parameter login_id Yes See Note (*) User name of the user to be deleted (*): Upper / Lower case alphanumeric characters. For more details, please refer to K5 Portal User Guide (..2 Essential Information for the use of the K5 Portal) input restrictions. /API/v/api/users/?login_id= fujitsu23 2. Response HTTP STATUS:200 Response body: No. Format Item Cardinality Description accesstoken_destruction_information_list.. User information whose token was JSON cancelled. 2 [BODY] customer_group_id.. Group ID to which the user belongs to. 3 login_id.. Login ID of the user. "accesstoken_destruction_information_list":[ "customer_group_id":"hvlgxxym", login_id":" fujitsu23" ] 8

23 3.3.5 Update user authentication information. Request Parameter definition No. Format Item Required Cardinality Min. Max. Restrictions Description length length login_id Yes See Note (*) User name of the target user 2 JSON [Body] Authentication method for the user authentication_method Yes.. See Note (*) 0: Authentication by a password : Authentication by a certificate & password (*): Upper / Lower case alphanumeric characters. For more details, please refer to K5 Portal User Guide "login_id": "fujitsu23", "authentication_method ":"", 9

24 2. Response HTTP STATUS:200 Response body: No. Format Item Cardinality Description JSON [Body] authentication_method.. Authentication method for the user. 0: Authentication by a password : Authentication by a certificate & password accesstoken_destruction_information_list.. User information whose token is to be canceled. customer_group_id.. Contract number of the user whose token is to be canceled. login_id.. Login ID of the user whose token is to be canceled. "authentication_method":""," "accesstoken_destruction_information_list":[ "customer_group_id":"hvlgxxym", "login_id":" fujitsu23" ] 20

25 FUJITSU Cloud Service K5 API Reference Manual Version.5 Issued January 208 All Rights Reserved, Copyright FUJITSU LIMITED 2

FUJITSU Cloud Service K5. API User Guide. Version 1.1 FUJITSU LIMITED

FUJITSU Cloud Service K5. API User Guide. Version 1.1 FUJITSU LIMITED FUJITSU Cloud Service K5 API User Guide Version 1.1 FUJITSU LIMITED Preface Purpose of This Document This guide describes preparation of the environment for services, which are used with API (Application

More information

K5 Portal User Guide

K5 Portal User Guide FUJITSU Cloud Service K5 K5 Portal User Guide Version 2.6 FUJITSU LIMITED Preface Purpose of This Document This guide describes the operating procedures for the services provided by FUJITSU Cloud Service

More information

IaaS API Reference (Management Administration)

IaaS API Reference (Management Administration) FUJITSU Cloud Service K5 IaaS API Reference (Management Administration) Version 1.18 FUJITSU LIMITED All Rights Reserved, Copyright FUJITSU LIMITED 2015-2018 K5IA-DC-M-001-001E Preface Structure of the

More information

API Reference (Contract Management)

API Reference (Contract Management) FUJITSU Cloud Service K5 IaaS API Reference (Contract Management) Version 1.5 FUJITSU LIMITED All Rights Reserved, Copyright Fujitsu Limited 2016 K5IA-DC-M-001-001E Preface Structure of the manuals Manual

More information

Service Portal User Guide

Service Portal User Guide FUJITSU Cloud Service K5 IaaS Service Portal User Guide Version 1.4 FUJITSU LIMITED All Rights Reserved, Copyright FUJITSU LIMITED 2015-2016 K5IA-DC-M-005-001E Preface Purpose of This Manual This manual

More information

FUJITSU Cloud Service K5 COLMINA Platform User Guide (Version 1.0.0)

FUJITSU Cloud Service K5 COLMINA Platform User Guide (Version 1.0.0) FUJITSU Cloud Service K5 COLMINA Platform User Guide (Version 1.0.0) IIDP1.0_M002 Version Description Date 1.0.0 First issued Jan. 26, 2018 Preface Thank you for considering the FUJITSU

More information

All Rights Reserved, Copyright FUJITSU LIMITED IoT Platform Service Portal Operating Manual (Version 5_0.0)

All Rights Reserved, Copyright FUJITSU LIMITED IoT Platform Service Portal Operating Manual (Version 5_0.0) 1 IoT Platform Service Portal Operating Manual (Version 5_0.0) Version No. Description Date Version 1.0 First version 2016/10/07 Version 1.1 Error corrections and supporting launch of

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

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

Oracle Hospitality OPERA Exchange Interface Cloud Authentication. October 2017

Oracle Hospitality OPERA Exchange Interface Cloud Authentication. October 2017 Oracle Hospitality OPERA Exchange Interface Cloud Authentication October 2017 Copyright 2016, 2017, Oracle and/or its affiliates. All rights reserved. This software and related documentation are provided

More information

REST API Operations. 8.0 Release. 12/1/2015 Version 8.0.0

REST API Operations. 8.0 Release. 12/1/2015 Version 8.0.0 REST API Operations 8.0 Release 12/1/2015 Version 8.0.0 Table of Contents Business Object Operations... 3 Search Operations... 6 Security Operations... 8 Service Operations... 11 Business Object Operations

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

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

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

Canonical Identity Provider Documentation

Canonical Identity Provider Documentation Canonical Identity Provider Documentation Release Canonical Ltd. December 14, 2018 Contents 1 API 3 1.1 General considerations.......................................... 3 1.2 Rate limiting...............................................

More information

AvePoint Cloud Governance. Release Notes

AvePoint Cloud Governance. Release Notes AvePoint Cloud Governance Release Notes January 2018 New Features and Improvements AvePoint Cloud Governance now includes a My Groups report, which shows users a list of Office 365 groups they own or are

More information

WEB API. Nuki Home Solutions GmbH. Münzgrabenstraße 92/ Graz Austria F

WEB API. Nuki Home Solutions GmbH. Münzgrabenstraße 92/ Graz Austria F WEB API v 1. 1 0 8. 0 5. 2 0 1 8 1. Introduction 2. Calling URL 3. Swagger Interface Example API call through Swagger 4. Authentication API Tokens OAuth 2 Code Flow OAuth2 Authentication Example 1. Authorization

More information

FUJITSU Cloud Service K5 IaaS Service Portal User Guide

FUJITSU Cloud Service K5 IaaS Service Portal User Guide FUJITSU Cloud Service K5 IaaS Service Portal User Guide Version 2.8 FUJITSU LIMITED Preface Purpose of This Document This guide describes the operating procedures of the IaaS Service Portal for the services

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

Cloudiway Google Groups migration. Migrate from Google Groups to Office 365 groups

Cloudiway Google Groups migration. Migrate from Google Groups to Office 365 groups Cloudiway Google Groups migration Migrate from Google Groups to Office 365 groups Copyright 2017 CLOUDIWAY. All right reserved. Use of any CLOUDIWAY solution is governed by the license agreement included

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

AEM Mobile: Setting up Google as an Identity Provider

AEM Mobile: Setting up Google as an Identity Provider AEM Mobile: Setting up Google as an Identity Provider Requirement: Prerequisite knowledge Understanding of AEM Mobile Required Products AEM Mobile Google Account Generating the client ID and secret To

More information

REST API: Guide for Implementers

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

More information

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

AvePoint Governance Automation 2. Release Notes

AvePoint Governance Automation 2. Release Notes AvePoint Governance Automation 2 Release Notes Service Pack 2, Cumulative Update 1 Release Date: June 2018 New Features and Improvements In the Create Office 365 Group/Team service > Governance Automation

More information

AvePoint Cloud Governance. Release Notes

AvePoint Cloud Governance. Release Notes AvePoint Cloud Governance Release Notes Table of Contents New Features and Improvements: June 2018... 2 New Features and Improvements: May 2018... 3 New Features and Improvements: April 2018... 4 New Features

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

Integration Guide. LoginTC

Integration Guide. LoginTC Integration Guide LoginTC Revised: 21 November 2016 About This Guide Guide Type Documented Integration WatchGuard or a Technology Partner has provided documentation demonstrating integration. Guide Details

More information

RSA Archer GRC Application Guide

RSA Archer GRC Application Guide RSA Archer GRC Application Guide Version 1.2 vember 2017 Contact Information RSA Link at https://community.rsa.com contains a knowledgebase that answers common questions and provides solutions to known

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

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

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

NVIDIA GPU CLOUD. DU _v02 July Getting Started Guide

NVIDIA GPU CLOUD. DU _v02 July Getting Started Guide NVIDIA GPU CLOUD DU-08787-001 _v02 July 2018 Getting Started Guide TABLE OF CONTENTS Chapter 1. Getting Started Using... 1 1.1. Signing Up for an NGC Account... 1 1.2. Logging on to the NGC Website...

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

TECHNICAL GUIDE SSO SAML. At 360Learning, we don t make promises about technical solutions, we make commitments.

TECHNICAL GUIDE SSO SAML. At 360Learning, we don t make promises about technical solutions, we make commitments. TECHNICAL GUIDE SSO SAML At 360Learning, we don t make promises about technical solutions, we make commitments. This technical guide is part of our Technical Documentation. 2 360Learning is a Leading European

More information

HP XP P9000 Remote Web Console Messages

HP XP P9000 Remote Web Console Messages HP XP P9000 Remote eb Console Messages Abstract This document lists the error codes and error messages for HP XP P9000 Remote eb Console for HP XP P9000 disk arrays, and provides recommended action for

More information

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

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

More information

FUJITSU Cloud Service K5 SF Restrictions / Advisory Notes. Version 1.5 FUJITSU LIMITED

FUJITSU Cloud Service K5 SF Restrictions / Advisory Notes. Version 1.5 FUJITSU LIMITED Version 1.5 FUJITSU LIMITED Oct 27, 2016 Contents 1 Preface 2 1.1 Purpose of This Document.................................... 2 1.2 Intended Readers......................................... 2 1.3 Structure

More information

f5-icontrol-rest Documentation

f5-icontrol-rest Documentation f5-icontrol-rest Documentation Release 1.3.10 F5 Networks Aug 04, 2018 Contents 1 Overview 1 2 Installation 3 2.1 Using Pip................................................. 3 2.2 GitHub..................................................

More information

IoT Platform API Reference (Version 4_2.0)

IoT Platform API Reference (Version 4_2.0) IoT Platform API Reference (Version 4_2.0) Version No. Description Date Version 1.0 First version 2016/10/07 Version 1.1 Updates based on K5 launch on UK site 2016/11/01 Version 1.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

FGCP/S5. Introduction Guide. Ver. 2.3 FUJITSU LIMITED

FGCP/S5. Introduction Guide. Ver. 2.3 FUJITSU LIMITED FGCP/S5 Introduction Guide Ver. 2.3 FUJITSU LIMITED FGCP/S5 Instruction Guide Ver. 2.3 Date of publish: July, 2012 All Rights Reserved, Copyright FUJITSU LIMITED No reproduction or republication without

More information

Integrating with Microsoft Intune to Enforce Compliance on Mac Computers Managed by Jamf Pro

Integrating with Microsoft Intune to Enforce Compliance on Mac Computers Managed by Jamf Pro Integrating with Microsoft Intune to Enforce Compliance on Mac Computers Managed by Jamf Pro Technical Paper Jamf Pro 10.9.0 or Later 29 January 2019 copyright 2002-2019 Jamf. All rights reserved. Jamf

More information

Multi-Sponsor Environment. SAS Clinical Trial Data Transparency Version 2.3 Getting Started

Multi-Sponsor Environment. SAS Clinical Trial Data Transparency Version 2.3 Getting Started Multi-Sponsor Environment SAS Clinical Trial Data Transparency Version 2.3 Getting Started Version 1.0 30 January 2018 Contents Contents 1 Overview...1 2 Setting Up Your Account...3 2.1 Completing the

More information

Using OAuth 2.0 to Access ionbiz APIs

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

More information

StorageGRID Webscale 11.0 Tenant Administrator Guide

StorageGRID Webscale 11.0 Tenant Administrator Guide StorageGRID Webscale 11.0 Tenant Administrator Guide January 2018 215-12403_B0 doccomments@netapp.com Table of Contents 3 Contents Administering a StorageGRID Webscale tenant account... 5 Understanding

More information

Flexepin Cash Topup Vouchers. API based Business UAT

Flexepin Cash Topup Vouchers. API based Business UAT Flexepin Cash Topup Vouchers API based Business UAT Document History Revision Description of Change Date Author 1.0 UAT Flexepin API 10-Nov-15 GB 1.1 Minor rewording 05 Jan 2016 ED 1.2 Amended test cases

More information

Copyright

Copyright This video looks at Claim Based/Identity Based systems using Active Directory Federation Services as an example. An example of a claim based system is where the user logs into a system like a web page

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

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

Oracle Cloud. Using the Google Calendar Adapter Release 16.3 E

Oracle Cloud. Using the Google Calendar Adapter Release 16.3 E Oracle Cloud Using the Google Calendar Adapter Release 16.3 E68599-05 September 2016 Oracle Cloud Using the Google Calendar Adapter, Release 16.3 E68599-05 Copyright 2015, 2016, Oracle and/or its affiliates.

More information

Elastic Load Balance. User Guide. Issue 01 Date HUAWEI TECHNOLOGIES CO., LTD.

Elastic Load Balance. User Guide. Issue 01 Date HUAWEI TECHNOLOGIES CO., LTD. Issue 01 Date 2018-04-30 HUAWEI TECHNOLOGIES CO., LTD. 2018. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means without prior written consent of

More information

Level 3 Media Portal API Guide

Level 3 Media Portal API Guide Level 3 Media Portal API Guide Updated June 9, 2017 Contents Media Web Services (API)... 1 Getting Started with Media Portal APIs... 3 Using APIs... 3 Determining the Access Group ID... 3 API Interfaces...

More information

IoT Platform API Reference (Version 1.6)

IoT Platform API Reference (Version 1.6) IoT Platform API Reference (Version 1.6) All Rights Reserved, Copyright@FUJITSU LIMITED 2016 Version No. Description Date Version 1.0 First version 2016/10/07 Version 1.1 Updates based

More information

COMSUITE Portal Operation Manual

COMSUITE Portal Operation Manual COMSUITE Portal Operation Manual April 2018 MUFG Bank A member of MUFG, a global financial group 2018 Mitsubishi UFJ Financial Group Revision History Date December 2014 September 2015 December 2015 June

More information

Oracle Cloud Using the Trello Adapter. Release 17.3

Oracle Cloud Using the Trello Adapter. Release 17.3 Oracle Cloud Using the Trello Adapter Release 17.3 E84579-03 September 2017 Oracle Cloud Using the Trello Adapter, Release 17.3 E84579-03 Copyright 2016, 2017, Oracle and/or its affiliates. All rights

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

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

RC2000. User's Guide

RC2000. User's Guide RC2000 User's Guide Edition February 2003 Preface Purpose This manual describes the functions and operation of RC2000. RC2000 is a software product that provides functions for operating an OS console

More information

Oracle Cloud Using the Microsoft Adapter. Release 17.3

Oracle Cloud Using the Microsoft  Adapter. Release 17.3 Oracle Cloud Using the Microsoft Email Adapter Release 17.3 E70297-10 December 2017 Oracle Cloud Using the Microsoft Email Adapter, Release 17.3 E70297-10 Copyright 2016, 2017, Oracle and/or its affiliates.

More information

BlackBerry AtHoc Networked Crisis Communication. BlackBerry AtHoc API Quick Start Guide

BlackBerry AtHoc Networked Crisis Communication. BlackBerry AtHoc API Quick Start Guide BlackBerry AtHoc Networked Crisis Communication BlackBerry AtHoc API Quick Start Guide Release 7.6, September 2018 Copyright 2018 BlackBerry Limited. All Rights Reserved. This document may not be copied,

More information

Oracle Payment Interface Token Proxy Service Security Guide Release 6.1 E November 2017

Oracle Payment Interface Token Proxy Service Security Guide Release 6.1 E November 2017 Oracle Payment Interface Token Proxy Service Security Guide Release 6.1 E87635-01 November 2017 Copyright 2017, Oracle and/or its affiliates. All rights reserved. This software and related documentation

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

Mobile Android Configuration Guide

Mobile Android Configuration Guide Mobile Android Configuration Guide Version 21 SP-WX-MBLAND-CG-201801--R021.00 Sage 2018. All rights reserved. This document contains information proprietary to Sage and may not be reproduced, disclosed,

More information

Oracle Cloud Using the Evernote Adapter. Release 17.3

Oracle Cloud Using the Evernote Adapter. Release 17.3 Oracle Cloud Using the Evernote Adapter Release 17.3 E69234-07 September 2017 Oracle Cloud Using the Evernote Adapter, Release 17.3 E69234-07 Copyright 2016, 2017, Oracle and/or its affiliates. All rights

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

Inland Revenue. Build Pack. Identity and Access Services. Date: 04/09/2017 Version: 1.5 IN CONFIDENCE

Inland Revenue. Build Pack. Identity and Access Services. Date: 04/09/2017 Version: 1.5 IN CONFIDENCE Inland Revenue Build Pack Identity and Access Services Date: 04/09/2017 Version: 1.5 IN CONFIDENCE About this Document This document is intended to provide Service Providers with the technical detail required

More information

Nasuni Data API Nasuni Corporation Boston, MA

Nasuni Data API Nasuni Corporation Boston, MA Nasuni Corporation Boston, MA Introduction The Nasuni API has been available in the Nasuni Filer since September 2012 (version 4.0.1) and is in use by hundreds of mobile clients worldwide. Previously,

More information

Chapter 1: Introduction 1. Chapter 2: Configure service templates 2. Chapter 3: Configure service publications 3

Chapter 1: Introduction 1. Chapter 2: Configure service templates 2. Chapter 3: Configure service publications 3 Copyright RES Software Development B.V. All rights reserved. Commercial Computer Software documentation/data Restricted Rights. RES and RES ONE are registered trademarks and service marks of RES Software

More information

ForeScout Extended Module for MobileIron

ForeScout Extended Module for MobileIron Version 1.8 Table of Contents About MobileIron Integration... 4 Additional MobileIron Documentation... 4 About this Module... 4 How it Works... 5 Continuous Query Refresh... 5 Offsite Device Management...

More information

Oracle Cloud Using the Google Calendar Adapter with Oracle Integration

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

More information

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

Usage of "OAuth2" policy action in CentraSite and Mediator

Usage of OAuth2 policy action in CentraSite and Mediator Usage of "OAuth2" policy action in CentraSite and Mediator Introduction Prerequisite Configurations Mediator Configurations watt.server.auth.skipformediator The pg.oauth2 Parameters Asset Creation 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

Shopitem API A technical guide to the REST API for managing updates of shopitems

Shopitem API A technical guide to the REST API for managing updates of shopitems Shopitem API A technical guide to the REST API for managing updates of shopitems Date: 07-12-2018 Version: 3.4 1 Index Introduction and background... 3 1. How to get access to the API and its online docs...

More information

FUJITSU Cloud Service S5. Introduction Guide. Ver. 1.3 FUJITSU AMERICA, INC.

FUJITSU Cloud Service S5. Introduction Guide. Ver. 1.3 FUJITSU AMERICA, INC. FUJITSU Cloud Service S5 Introduction Guide Ver. 1.3 FUJITSU AMERICA, INC. 1 FUJITSU Cloud Service S5 Introduction Guide Ver. 1.3 Date of publish: September, 2011 All Rights Reserved, Copyright FUJITSU

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

ADFS Authentication and Configuration January 2017

ADFS Authentication and Configuration January 2017 ADFS Authentication and Configuration January 2017 International Corporation 1 Table of Contents Introduction... 2 Changelog for Configure Active Directory Synchronization... 3 2.1. Changes in Configure

More information

Integrating with Microsoft Intune to Enforce Compliance on Macs Managed by Jamf Pro. Technical Paper Jamf Pro or Later 16 July 2018

Integrating with Microsoft Intune to Enforce Compliance on Macs Managed by Jamf Pro. Technical Paper Jamf Pro or Later 16 July 2018 Integrating with Microsoft Intune to Enforce Compliance on Macs Managed by Jamf Pro Technical Paper Jamf Pro 10.6.0 or Later 16 July 2018 copyright 2002-2018 Jamf. All rights reserved. Jamf has made all

More information

Nasuni Data API Nasuni Corporation Boston, MA

Nasuni Data API Nasuni Corporation Boston, MA Nasuni Corporation Boston, MA Introduction The Nasuni API has been available in the Nasuni Filer since September 2012 (version 4.0.1) and is in use by hundreds of mobile clients worldwide. Previously,

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

Governance, Risk, and Compliance Controls Suite. Release Notes. Software Version

Governance, Risk, and Compliance Controls Suite. Release Notes. Software Version Governance, Risk, and Compliance Controls Suite Release Notes Software Version 7.2.2.1 Governance, Risk, and Compliance Controls Suite Release Notes Part No. AG008-7221A Copyright 2007, 2008, Oracle Corporation

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 server manufacturer that distributes the software with the server; or the software installer that distributes the software with the server.

the server manufacturer that distributes the software with the server; or the software installer that distributes the software with the server. MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT WINDOWS SERVER 2012 R2 STANDARD (2 CPU) These license terms are an agreement between you and: the server manufacturer that distributes the software with the server;

More information

Spontania Administrators Manual

Spontania Administrators Manual Spontania Administrators Manual ClearOne 5225 Wiley Post Way Suite 500 Salt Lake City, UT 84116 Telephone 1.800.945.7730 1.801.975.7200 Spontania Support 801-974-3612 TechSales 1.800.705.2103 FAX 1.801.977-0087

More information

Oracle Cloud E

Oracle Cloud E Oracle Cloud Using the Evernote Adapter Release 16.3 E69234-05 September 2016 This guide describes how to configure and add the Evernote Adapter to an Oracle Integration Cloud Service integration. Oracle

More information

DocAve. Release Notes. Governance Automation Service Pack 5 Cumulative Update 2. For Microsoft SharePoint

DocAve. Release Notes. Governance Automation Service Pack 5 Cumulative Update 2. For Microsoft SharePoint DocAve Governance Automation Service Pack 5 Cumulative Update 2 Release Notes For Microsoft SharePoint Released March 10, 2015 Governance Automation SP5 CU2 Update Details Refer to the Updating Governance

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

Building the Modern Research Data Portal using the Globus Platform. Rachana Ananthakrishnan GlobusWorld 2017

Building the Modern Research Data Portal using the Globus Platform. Rachana Ananthakrishnan GlobusWorld 2017 Building the Modern Research Data Portal using the Globus Platform Rachana Ananthakrishnan rachana@globus.org GlobusWorld 2017 Platform Questions How do you leverage Globus services in your own applications?

More information

Configuring Microsoft ADFS for Oracle Fusion Expenses Mobile Single Sign-On

Configuring Microsoft ADFS for Oracle Fusion Expenses Mobile Single Sign-On Configuring Microsoft ADFS for Oracle Fusion Expenses Mobile Single Sign-On To enable single sign-on for Fusion Expenses mobile application, you must perform the following steps on your ADFS server. The

More information

Fuji Xerox is not responsible for any breakdown of machines due to infection of computer virus or computer hacking.

Fuji Xerox is not responsible for any breakdown of machines due to infection of computer virus or computer hacking. Microsoft, Windows, and Internet Explorer are trademarks or registered trademarks of Microsoft Corporation in the U.S. and other countries. All product/brand names are trademarks or registered trademarks

More information

MindSphere DevOps Guide

MindSphere DevOps Guide Introduction 1 Development, Operation and Sales Process 2 MindSphere Platform Services 3 MindSphere DevOps Guide v1.0 (Jan. 2018) General Guidelines for Development and Operation 4 Security Obligations

More information

Oracle. Field Service Cloud Using Android and ios Mobile Applications 18B

Oracle. Field Service Cloud Using Android and ios Mobile Applications 18B Oracle Field Service Cloud Using Android and ios Mobile Applications 18B Part Number: E94755-02 Copyright 2018, Oracle and/or its affiliates. All rights reserved Authors: The Field Service Cloud Information

More information

HingX.org API. Revision 2, November 30, 2012

HingX.org API. Revision 2, November 30, 2012 HingX.org API Revision 2, November 30, 2012 Revision History Date Revision Number Comments August 21, 2012 1 Phase 1 API Specification November 30, 2012 2 Phase 2 API Specification Contents Preface...

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

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

INSTRUCTION MANUAL Data transfer software for VM-82A

INSTRUCTION MANUAL Data transfer software for VM-82A INSTRUCTION MANUAL Data transfer software for VM-82A 3-20-41 Higashimotomachi, Kokubunji, Tokyo 185-8533, Japan http://www.rion.co.jp/english/ Organization of this manual This manual describes the features

More information

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

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

More information

Oracle Hospitality Simphony. Import/Export API Guide

Oracle Hospitality Simphony. Import/Export API Guide Oracle Hospitality Simphony Import/Export API Guide Release 18.2 F12083-01 December 2018 Oracle Hospitality Guide, Release 18.2 F12083-01 Copyright 2010, 2018, Oracle and/or its affiliates. All rights

More information

Certification Test Plan SSRF Conformance for OpenSSRF Software v Document WINNF-14-S-0023

Certification Test Plan SSRF Conformance for OpenSSRF Software v Document WINNF-14-S-0023 Certification Test Plan SSRF Conformance for OpenSSRF Software v3.1.0 Document WINNF-14-S-0023 Version V1.0.0 10 February 2015 TERMS, CONDITIONS & NOTICES This document has been prepared by the Open SSRF

More information