Passcreator API Documentation

Size: px
Start display at page:

Download "Passcreator API Documentation"

Transcription

1 Passcreator API Documentation Version December 2014 USt-IdNr.: DE Seite 1 von 9

2 About this Document 3 Obtaining an API key 3 Authentication 3 Testing 3 Get list of pass-templates 4 Get information about a pass-template 4 Get all passes of a pass-template 5 Check if a pass is known to a given ID 6 Get information about a specific pass 7 Create a new pass 7 Update a pass 8 Mark a pass as voided 9 USt-IdNr.: DE Seite 2 von 9

3 About this Document This document describes the REST API that can be used if you or one of your customers has a valid account for the online app that is available at In general a REST API means that you always have to provide a authentication token in the authorization header of every HTTP-Request. The API provides functions to create, read, update and delete Passbook passes. Additionally there are functions to get a list of pass-templates and existing passes. In order to use the API features a pass-template must be created using the Passcreator online app. Creating and updating pass-templates is currently not supported via the API. This documentation is provided as is without any warranty. If you notice that any of the functions or methods don t work as expected or find something that is not described clearly enough please send us an to support@passcreator.de. Also this document might be subject to change as we are constantly adding new features to Passcreator. If you want to get notified about changes to the API please also write us an E- Mail to support@passcreator.de and we ll add you to a recipient list that is notified as soon as a new version of the documentation is available. Obtaining an API key The API key must be submitted in the HTTP Authorization header on every request. It is used to check if the caller is authorized to execute the function. To get the API key log in to Passcreator ( and go to Account Options. You can find the API key at the bottom of the page. Authentication To authorize your request you must always submit the API key in the HTTP Authorization header. Testing If you want to test the API or learn how it works a good way to get used to it without having to code much is installing a browser plugin like Postman ( for Google Chrome. It allows you to test all Passcreator API functions so you can get an idea of how it works. If API functions need complex data this data must be submitted as JSON payload. Also the API functions will return information about the executed steps like IDs of created passes or error messages as JSON arrays. In general the Passcreator API will always return the appropriate HTTP-statuses e.g.: Request was valid and the results are being returned Created - the action you wanted to execute was successful and the information about the created object is returned No Content an error occurred and the request could therefore not be processed. Details about the error is specified in the response Unauthorized - you have specified an invalid or no Authorization header Not found - the given UID could not be found or is invalid. USt-IdNr.: DE Seite 3 von 9

4 Get list of pass-templates URL: Purpose: Returns a list of all pass-templates that have been created for your account. Returned values: JSON-Array containing the UID and the name of your pass-templates. Get information about a pass-template URL: Purpose: Get information about the given pass-template. This information is e.g. needed if you want to create passes for this pass-template. UID of the pass-template that must be specified in the URI. If you don t have a UID you can obtain it by using the function explained in the section Get list of pass-templates. Returned values: JSON-Array containing the following values: identifier: the UID of the pass-template name: the name of the pass-template numberofcreatedpasses: the number of created passes for this pass-template. Pay attention that this is the overall number of passes that have been created, not the number of passes created this month. createpassurl: the API url including the pass-template UID that must be used to create new passes. dynamicfields: JSON-Array that specifies the array that must be submitted when passes are created or updated. For more details see Create a new pass in this document. USt-IdNr.: DE Seite 4 von 9

5 Get all passes of a pass-template URL: Purpose: Returns a list of all passes for the given pass-template. pass-template UID as GET parameter with the parameter name passid. Returned values: JSON-Array containing an array for every pass. The array for the passes contain these fields: identifier: the UID of the pass that can be used e.g. for updates. uri: the URI of the pass that can be used to update or delete it. generatedid: the unique ID that is created for every pass and can e.g. be used for admittance tools to check if a given ID is valid. This ID is usually encoded in the Barcode on the pass if you re not using own IDs. voided: false, if the pass is not voided, means it has not been used. true, if the pass is voided, means it has been used already. searchstring: contains all data on the pass separated by pipe symbols USt-IdNr.: DE Seite 5 von 9

6 Check if a pass is known to a given ID URL: Purpose: Checks if a pass is found for the given ID. This function can e.g. be used to check if a pass that is shown on admittance of a event is valid. To use this it is required that the ID is encoded in the passes barcode. Currently only IDs that are automatically generated by Passcreator can be checked. ID that should be checked for Returned values: JSON-Array containing the following information: error: if an error occurred it is specified here. If the field is empty, no error occurred. identifier: the UID of the pass that has the given ID. uri: the URI you can use to update or delete the pass. generatedid: the ID (this is the one that was given in the request) searchstring: all data that is shown on the pass front or back. Fields are separated by pipe symbols. voided: if true, the pass is voided. This means it has already been used. passtemplateguid: the GUID of the pass-template that was used to create the pass. USt-IdNr.: DE Seite 6 von 9

7 Get information about a specific pass URL: Purpose: If the given pass UID is known information about the pass is returned. UID of the pass you want information about Returned values: JSON-Array containing the following information: identifier: the UID of the pass that has the given ID. uri: the URI you can use to update or delete the pass. generatedid: the generated ID that is used e.g. in the barcode. searchstring: all data that is shown on the pass front or back. Fields are separated by pipe symbols. voided: if true, the pass is voided. This means it has already been used. passtemplateguid: the GUID of the pass-template that was used to create the pass. Create a new pass URL: HTTP-Method: POST Purpose: Create a new pass using the given pass template. ID of the pass template as parameter in the URI. USt-IdNr.: DE Seite 7 von 9

8 An array containing the values that should be shown on the pass as specified by the method that describes a pass template. See Get information about a pass-template in this document. The JSON-Array must be submitted as payload of the request. An example JSON array looks like this: Returned values: JSON-Array containing the following information: identifier: the unique identifier of the created pass uri: the URI that can be used to update or delete the pass linktopassfile: the link where the pkpass-file can be downloaded. The pkpass-file is the actual pass that can be opened on iphones directly. linktopasspage: link to the download page for this pass that detects the operating system of the Smartphone that is used and provides device specific help. ErrorMessage: if an error occurs it is shown here. Update a pass URL: HTTP-Method: PUT Purpose: Update an existing pass. ID of the pass that must be updated in the URI. An array containing the values that should be shown on the pass as specified by the method that describes a pass template. See Get information about a pass-template in this document. The JSON-Array must be submitted as payload of the request. An example JSON array looks like this: USt-IdNr.: DE Seite 8 von 9

9 Returned values: If the pass has been updated successfully HTTP Status 204 is returned. Mark a pass as voided URL: HTTP-Method: PUT Purpose: Mark a pass voided or not. This is e.g. useful, if an event ticket has been used. If a pass is voided the barcode that is shown on the pass will be greyed out on the users device. ID of the pass that must be voided in the URI. Boolean (true or false) that indicates if the pass should be voided or not. If the pass should be voided, the boolean must be true, if it should not be voided the boolean parameter must be false. The passinstance[voided] parameter is also specified in the URI. Returned values: If the pass has been updated successfully HTTP Status 204 is returned. USt-IdNr.: DE Seite 9 von 9

Programming Autodesk PLM 360 Using REST. Doug Redmond Software Engineer, Autodesk

Programming Autodesk PLM 360 Using REST. Doug Redmond Software Engineer, Autodesk Programming Autodesk PLM 360 Using REST Doug Redmond Software Engineer, Autodesk Introduction This class will show you how to write your own client applications for PLM 360. This is not a class on scripting.

More information

Cloud Elements! Events Management BETA! API Version 2.0

Cloud Elements! Events Management BETA! API Version 2.0 Cloud Elements Events Management BETA API Version 2.0 Event Management Version 1.0 Event Management Cloud Elements Event Management provides a uniform mechanism for subscribing to events from Endpoints

More information

Office365Mon Developer API

Office365Mon Developer API Office365Mon Developer API Office365Mon provides a set of services for retrieving report data, and soon for managing subscriptions. This document describes how you can create an application to programmatically

More information

Cloud Elements! Marketing Hub Provisioning and Usage Guide!

Cloud Elements! Marketing Hub Provisioning and Usage Guide! Cloud Elements Marketing Hub Provisioning and Usage Guide API Version 2.0 Page 1 Introduction The Cloud Elements Marketing Hub is the first API that unifies marketing automation across the industry s leading

More information

SAML application scripting guide

SAML application scripting guide Chapter 151 SAML application scripting guide You can use the generic SAML application template (described in Creating a custom SAML application profile) to add a SAML-enabled web application to the app

More information

Fairsail REST API: Guide for Developers

Fairsail REST API: Guide for Developers Fairsail REST API: Guide for Developers Version 1.02 FS-API-REST-PG-201509--R001.02 Fairsail 2015. All rights reserved. This document contains information proprietary to Fairsail and may not be reproduced,

More information

How do I Configure my bmail Account on Outlook 2013 Using the Google Apps Sync Tool?

How do I Configure my bmail Account on Outlook 2013 Using the Google Apps Sync Tool? Enterprise Computing & Service Management How do I Configure my bmail Account on Outlook 2013 Using the Google Apps Sync Tool? By using the Google Apps Sync tool you will be able to synchronize your bconnected

More information

WatchGuard QMS End User Guide

WatchGuard QMS End User Guide WatchGuard QMS End User Guide WatchGuard QMS Overview The WatchGuard QMS device enables spam messages from the WatchGuard XCS to be directed to a local quarantine area that provides spam storage for each

More information

An Oracle White Paper June 2014. RESTful Web Services for the Oracle Database Cloud - Multitenant Edition

An Oracle White Paper June 2014. RESTful Web Services for the Oracle Database Cloud - Multitenant Edition An Oracle White Paper June 2014 RESTful Web Services for the Oracle Database Cloud - Multitenant Edition 1 Table of Contents Introduction to RESTful Web Services... 3 Architecture of Oracle Database Cloud

More information

API Reference Guide. API Version 1. Copyright Platfora 2016

API Reference Guide. API Version 1. Copyright Platfora 2016 API Reference Guide API Version 1 Copyright Platfora 2016 Last Updated: 10:05 a.m. April 21, 2016 Contents Document Conventions... 5 Contact Platfora Support...6 Copyright Notices... 6 Chapter 1: Using

More information

.OR.AT.ATTORNEY.AUCTION.BARGAINS.BAYERN.BERLIN.BLACKFRIDAY.BOUTIQUE.BRUSSELS.BUILDERS

.OR.AT.ATTORNEY.AUCTION.BARGAINS.BAYERN.BERLIN.BLACKFRIDAY.BOUTIQUE.BRUSSELS.BUILDERS .AC.BIO.RESTAURANT.APARTMENTS.CASINO.SCHOOL.KIM.ACADEMY.ACCOUNTANTS.ACTOR.ADULT.AE.AERO.AG.AGENCY.AIRFORCE.ARCHI.ARMY.ASIA.ASSOCIATES.AT.CO.AT.OR.AT.ATTORNEY.AUCTION.AUDIO.BAND.BANK.BAR.BARGAINS.BAYERN.BE.BEER.BERLIN.BID.BIKE.BINGO.BIZ.BLACK.BLACKFRIDAY.BLUE.BOUTIQUE.BRUSSELS.BUILDERS.BUSINESS.BZ.CO.BZ.COM.BZ.ORG.BZ.CAB.CAFE.CAMERA.CAMP.CAPITAL.CARDS.CARE.CAREERS.CASA.CASH.CATERING.CC.CENTER.CH.CHAT.CHEAP.CHRISTMAS

More information

D&B Direct+ API Documentation for IP Address Detail Lookup. Version 1, REST Interface. Intended for Early Adopter Program Participants

D&B Direct+ API Documentation for IP Address Detail Lookup. Version 1, REST Interface. Intended for Early Adopter Program Participants DUN & BRADSTREET D&B Direct+ API Documentation for IP Address Detail Lookup Version 1, REST Interface Intended for Early Adopter Program Participants PREPARED ON THURSDAY, JUNE 11, 2015 Copyright 2015

More information

Qlik REST Connector Installation and User Guide

Qlik REST Connector Installation and User Guide Qlik REST Connector Installation and User Guide Qlik REST Connector Version 1.0 Newton, Massachusetts, November 2015 Authored by QlikTech International AB Copyright QlikTech International AB 2015, All

More information

How to create a Samsung Apps ID and add App Cash

How to create a Samsung Apps ID and add App Cash How to create a Samsung Apps ID and add App Cash Getting Started: You will need a PC Internet connection Pen and paper to write down your Samsung Apps ID and Password To create a Samsung Apps ID, follow

More information

The HTTP Plug-in. Table of contents

The HTTP Plug-in. Table of contents Table of contents 1 What's it for?... 2 2 Controlling the HTTPPlugin... 2 2.1 Levels of Control... 2 2.2 Importing the HTTPPluginControl...3 2.3 Setting HTTPClient Authorization Module... 3 2.4 Setting

More information

/ 1. Online Banking User Guide SouthStateBank.com / (800) 277-2175

/ 1. Online Banking User Guide SouthStateBank.com / (800) 277-2175 / 1 Online Banking User Guide SouthStateBank.com / (800) 277-2175 Welcome Thank you for using South State s Online Banking. Whether you are a first time user or an existing user, this guide will walk you

More information

Online signature API. Terms used in this document. The API in brief. Version 0.20, 2015-04-08

Online signature API. Terms used in this document. The API in brief. Version 0.20, 2015-04-08 Online signature API Version 0.20, 2015-04-08 Terms used in this document Onnistuu.fi, the website https://www.onnistuu.fi/ Client, online page or other system using the API provided by Onnistuu.fi. End

More information

Remote Access End User Reference Guide for SHC Portal Access

Remote Access End User Reference Guide for SHC Portal Access Remote Access End User Reference Guide for SHC Portal Access Version 2.0 6/7/2012 This remote access end user reference guide provides an overview of how to install Citrix receiver, which is a required

More information

Creating a generic user-password application profile

Creating a generic user-password application profile Chapter 4 Creating a generic user-password application profile Overview If you d like to add applications that aren t in our Samsung KNOX EMM App Catalog, you can create custom application profiles using

More information

Developer Reference. A mobile loyalty platform for retailers. Document Number: 09720037

Developer Reference. A mobile loyalty platform for retailers. Document Number: 09720037 Developer Reference A mobile loyalty platform for retailers Document Number: 09720037 CONTENTS Guide Overview Description of this Guide... ix What s new in this guide...x Upgrade impact...xii 1. Getting

More information

ACORD. Lync 2013 Web-app Install Guide

ACORD. Lync 2013 Web-app Install Guide ACORD Lync 2013 Web-app Install Guide 1 Index Internet Explorer Pages 3-5 Google Chrome..Pages 6-8 Mozilla Firefox.Pages 9-12 Safari..Pages 13-16 2 If using Internet Explorer as your default browser upon

More information

Frequently Asked Questions

Frequently Asked Questions Frequently Asked Questions Development & Maintenance of Web Based Portal and MIS for Monitoring & Evaluation of Vocational Training Improvement Project Version 1.0 Help Desk: support.dget@wipro.com 0120

More information

Meeting Rooms User Manual

Meeting Rooms User Manual Meeting Rooms User Manual Document Identifier: iqmrum Document Statu\Version: Draft\0.0.3 Document Publication Date: 2015.05.12 Template Identifier\Version: iquest Document Template T-1\2.0.0 Table of

More information

* "computer_type" refers to the type of computer the user has ordered (basic or advanced model). THIS VALUE MUST BE PROVIDED.

* computer_type refers to the type of computer the user has ordered (basic or advanced model). THIS VALUE MUST BE PROVIDED. AKERSHUS FYLKESKOMMUNE Elev-PC godkjenningsportal v1.0.1 DEFINITIONS "Provider" in this document refers to Akershus Fylkeskommune. "Consumer" refers to the user of the the API (Leverandør). CHANGE LOG

More information

OAuth 2.0 Developers Guide. Ping Identity, Inc. 1001 17th Street, Suite 100, Denver, CO 80202 303.468.2900

OAuth 2.0 Developers Guide. Ping Identity, Inc. 1001 17th Street, Suite 100, Denver, CO 80202 303.468.2900 OAuth 2.0 Developers Guide Ping Identity, Inc. 1001 17th Street, Suite 100, Denver, CO 80202 303.468.2900 Table of Contents Contents TABLE OF CONTENTS... 2 ABOUT THIS DOCUMENT... 3 GETTING STARTED... 4

More information

Download and Launch Instructions for WLC Client App Program

Download and Launch Instructions for WLC Client App Program Download and Launch Instructions for WLC Client App Program Version 1.0 Contents Introduction... 1 Windows 7, IE9... 2 Windows 7 or XP, IE8... 3 Windows 7 or XP, Firefox... 4 Windows 7, Google Chrome...

More information

Administering Google Apps & Chromebooks for Education

Administering Google Apps & Chromebooks for Education Administering Google Apps & Chromebooks for Education February 4, 2016 Edward Doan @edwardd / google.com/+edwarddoan customer quotes and snippets It s almost this easy. also highlight customer map? Google

More information

Traitware Authentication Service Integration Document

Traitware Authentication Service Integration Document Traitware Authentication Service Integration Document February 2015 V1.1 Secure and simplify your digital life. Integrating Traitware Authentication This document covers the steps to integrate Traitware

More information

Flexible Identity Federation

Flexible Identity Federation Flexible Identity Federation User guide version 1.0.1 Publication History Date Description Revision 2015.09.25 initial release 1.0.0 2015.12.10 minor corrections 1.0.1 Copyright Orange Business Services

More information

Hubcase for Salesforce Installation and Configuration Guide

Hubcase for Salesforce Installation and Configuration Guide Hubcase for Salesforce Installation and Configuration Guide Note: This document is intended for system administrator, and not for end users. Installation and configuration require understanding of both

More information

Cloud Powered Mobile Apps with Microsoft Azure

Cloud Powered Mobile Apps with Microsoft Azure Cloud Powered Mobile Apps with Microsoft Azure Malte Lantin Technical Evanglist Microsoft Azure Malte Lantin Technical Evangelist, Microsoft Deutschland Fokus auf Microsoft Azure, App-Entwicklung Student

More information

Contents First Time Setup... 2 Setting up the Legal Vault Client (KiteDrive)... 3 Setting up the KiteDrive Outlook Plugin... 10 Using the Legal Vault

Contents First Time Setup... 2 Setting up the Legal Vault Client (KiteDrive)... 3 Setting up the KiteDrive Outlook Plugin... 10 Using the Legal Vault Contents First Time Setup... 2 Setting up the Legal Vault Client (KiteDrive)... 3 Setting up the KiteDrive Outlook Plugin... 10 Using the Legal Vault Outlook Plugin... 13 Using KiteDrive to Send Large

More information

Quick Start Guide Mobile Entrée 4

Quick Start Guide Mobile Entrée 4 Table of Contents Table of Contents... 1 Installation... 2 Obtaining the Installer... 2 Installation Using the Installer... 2 Site Configuration... 2 Feature Activation... 2 Definition of a Mobile Application

More information

Cloud Elements ecommerce Hub Provisioning Guide API Version 2.0 BETA

Cloud Elements ecommerce Hub Provisioning Guide API Version 2.0 BETA Cloud Elements ecommerce Hub Provisioning Guide API Version 2.0 BETA Page 1 Introduction The ecommerce Hub provides a uniform API to allow applications to use various endpoints such as Shopify. The following

More information

OAuth2lib. http://tools.ietf.org/html/ietf-oauth-v2-10 implementation

OAuth2lib. http://tools.ietf.org/html/ietf-oauth-v2-10 implementation OAuth2lib http://tools.ietf.org/html/ietf-oauth-v2-10 implementation 15 Julio 2010 OAuth2 - Assertion Profile Library! 3 Documentation! 4 OAuth2 Assertion Flow! 4 OAuth Client! 6 OAuth Client's Architecture:

More information

Getting Started with the icontact API

Getting Started with the icontact API Getting Started with the icontact API Contents - Introduction -... 2 - URIs, URLs, Resources, and Supported Actions -... 3 Contacts Category... 3 Messages Category... 4 Track Category... 4 GET... 5 POST...

More information

Outlook Data File navigate to the PST file that you want to open, select it and choose OK. The file will now appear as a folder in Outlook.

Outlook Data File navigate to the PST file that you want to open, select it and choose OK. The file will now appear as a folder in Outlook. Migrate Archived Outlook Items Outlook includes archiving functionality that is used to free up space on the mail server by moving older items from the mail server to PST files stored on your computer

More information

CDUfiles User Guide. Chapter 1: Accessing your data with CDUfiles. Sign In. CDUfiles User Guide Page 1. Here are the first steps to using CDUfiles.

CDUfiles User Guide. Chapter 1: Accessing your data with CDUfiles. Sign In. CDUfiles User Guide Page 1. Here are the first steps to using CDUfiles. CDUfiles User Guide Chapter 1: Accessing your data with CDUfiles Here are the first steps to using CDUfiles. Sign In Open your web browser and enter cdufiles.cdu.edu.au or Note: Use cdufiles.egnyte.com

More information

OneSourceFax Customer Guide

OneSourceFax Customer Guide OneSourceFax Customer Guide General Information Billing: OneSourceFax Plan Features Monthly Charge OneSourceFax 150 Unlimited Faxes to Numbers in your Local Calling Area $12.95 150 Nationwide Long Distance

More information

Business Mobile App User Guide

Business Mobile App User Guide Business Mobile App User Guide Logging On to CNB Business Mobile Logging on to CNB Business Mobile involves the same layers of authentication as your Online For Business account does. 1. Launch the app

More information

Everbridge Suite Winter 2015 Release Notes

Everbridge Suite Winter 2015 Release Notes Everbridge Suite Winter 2015 Release Notes Version 4.0.0 February 4, 2015 February 4, 2015 Printed in the USA. Copyright 2015. Everbridge, Inc. All rights are reserved. Everbridge, Aware, SmartGIS, Act-SaaS,

More information

GMass Getting Started Guide

GMass Getting Started Guide Powerful Mass Email System for Gmail Created by: Ajay Goel September 2015 GMass Getting Started Guide Table of Contents Section 1: Set Up Google Chrome & GMass... 1 Who Should Use This Guide... 1 Benefits

More information

Teacher Activities Page Directions

Teacher Activities Page Directions Teacher Activities Page Directions The Teacher Activities Page provides teachers with access to student data that is protected by the federal Family Educational Rights and Privacy Act (FERPA). Teachers

More information

MyPrint instructions; printing, scanning and copying. version 1.3 EN march 2015

MyPrint instructions; printing, scanning and copying. version 1.3 EN march 2015 MyPrint instructions; printing, scanning and copying version 1.3 EN march 2015 TOC 1 Introduction to myprint 3 1.1 Print credit and payments 3 1.2 Accepting the terms 3 2 Upgrading credit (students only)

More information

Cloud Fax Quick Guide

Cloud Fax Quick Guide There are several different ways to send or receive a fax using BullsEye Cloud Fax: Email Portal App Before sending a fax using the app, you ll need to install it on to your desktop, tablet, or cell phone

More information

API documentation - 1 -

API documentation - 1 - API documentation - 1 - Table of Contents 1. Introduction 1.1. What is an API 2. API Functions 2.1. Purge list of files 2.1.1 Description 2.1.2 Implementation 2.2. Purge of whole cache (all files on all

More information

Single Sign On Guide. Table of Contents

Single Sign On Guide. Table of Contents Single Sign On Guide Table of Contents I. Overview II. Benefits III. How SSO Works IV. Set-up Requirements and Recommendations V. Set-up Instructions a. Required Parameters b. Optional Parameters c. Error

More information

Riverbed Cascade Shark Common REST API v1.0

Riverbed Cascade Shark Common REST API v1.0 Riverbed Cascade Shark Common REST API v1.0 Copyright Riverbed Technology Inc. 2015 Created Feb 1, 2015 at 04:02 PM Contents Contents Overview Data Encoding Resources information: ping information: list

More information

Manual. Netumo NETUMO HELP MANUAL WWW.NETUMO.COM. Copyright Netumo 2014 All Rights Reserved

Manual. Netumo NETUMO HELP MANUAL WWW.NETUMO.COM. Copyright Netumo 2014 All Rights Reserved Manual Netumo NETUMO HELP MANUAL WWW.NETUMO.COM Copyright Netumo 2014 All Rights Reserved Table of Contents 1 Introduction... 0 2 Creating an Account... 0 2.1 Additional services Login... 1 3 Adding a

More information

Release Notes. DocuSign Spring 15 Release Notes. Contents

Release Notes. DocuSign Spring 15 Release Notes. Contents Release Notes Updated March 6, 2015 DocuSign Spring 15 Release Notes This document provides information about the updates deployed to the DocuSign Production environment as part of the March 6, 2015 DocuSign

More information

From Delphi to the cloud

From Delphi to the cloud From Delphi to the cloud Introduction Increasingly data and services hosted in the cloud become accessible by authenticated REST APIs for client applications, be it web clients, mobile clients and thus

More information

How To Get A Certificate From Digicert On A Pc Or Mac Or Mac (For Pc Or Ipa) On A Mac Or Ipad (For Mac) On Pc Or Pc Or Pb (For Ipa Or Mac) For Free

How To Get A Certificate From Digicert On A Pc Or Mac Or Mac (For Pc Or Ipa) On A Mac Or Ipad (For Mac) On Pc Or Pc Or Pb (For Ipa Or Mac) For Free DigiCert User Guide Version 3.7 Contents 1 User Management... 7 1.1 Roles and Account Access... 7 1.1.1 Administrator Role... 7 1.1.2 User Role... 7 1.1.3 CS Verified User... 7 1.1.4 EV Verified User...

More information

Configuration Guide - OneDesk to SalesForce Connector

Configuration Guide - OneDesk to SalesForce Connector Configuration Guide - OneDesk to SalesForce Connector Introduction The OneDesk to SalesForce Connector allows users to capture customer feedback and issues in OneDesk without leaving their familiar SalesForce

More information

/ 1. Online Banking User Guide SouthStateBank.com / (800) 277-2175

/ 1. Online Banking User Guide SouthStateBank.com / (800) 277-2175 / 1 Online Banking User Guide SouthStateBank.com / (800) 277-2175 Welcome Thank you for using South State s Online Banking. Whether you are a first time user or an existing user, this guide will walk you

More information

How to create database in GlycomcsPortal?

How to create database in GlycomcsPortal? How to create database in GlycomcsPortal? 1. Log- in Log in through Log in 2. Submit Content Click Submit Content on the menu. 3. Choose Database Choose Database as a type of entry you desire to create.

More information

Business Online Banking Quick Users Guide

Business Online Banking Quick Users Guide Business Online Banking Quick Users Guide Business Online Banking Quick Users Guide Table of Contents Overview 2 First Time Login 2 Security 4 Contact Points 4 Registering your Browser / Computer 5 Adding,

More information

How do I contact someone if my question is not answered in this FAQ?

How do I contact someone if my question is not answered in this FAQ? Help Where may I find the answers to my Internet Banking questions? How do I contact someone if my question is not answered in this FAQ? Enrolling How do I enroll in Internet Banking? Logging In How do

More information

A client is a person, who contacts your company via service Chat Helpdesk using messengers and SMS.

A client is a person, who contacts your company via service Chat Helpdesk using messengers and SMS. API manual Version 1.0 This API is designed to work with our service Chat Helpdesk. Terms A client is a person, who contacts your company via service Chat Helpdesk using messengers and SMS. A channel is

More information

1 Overview 1 1.1 Configuration on MACH Web Portal 1

1 Overview 1 1.1 Configuration on MACH Web Portal 1 API Guide Version 2 Table of Content 1 Overview 1 1.1 Configuration on MACH Web Portal 1 1.2 Other Pre-requisites 1 1.2.1 Apple Push SSL Certificate 1 1.2.2 Android GCM Key 2 1.2.3 Enabling Push Notification

More information

Salesforce Files Connect Implementation Guide

Salesforce Files Connect Implementation Guide Salesforce Files Connect Implementation Guide Salesforce, Winter 16 @salesforcedocs Last updated: December 10, 2015 Copyright 2000 2015 salesforce.com, inc. All rights reserved. Salesforce is a registered

More information

How To Use Kiteworks On A Microsoft Webmail Account On A Pc Or Macbook Or Ipad (For A Webmail Password) On A Webcomposer (For An Ipad) On An Ipa Or Ipa (For

How To Use Kiteworks On A Microsoft Webmail Account On A Pc Or Macbook Or Ipad (For A Webmail Password) On A Webcomposer (For An Ipad) On An Ipa Or Ipa (For GETTING STARTED WITH KITEWORKS DEVELOPER GUIDE Version 1.0 Version 1.0 Copyright 2014 Accellion, Inc. All rights reserved. These products, documents, and materials are protected by copyright law and distributed

More information

Google Calendar 3 Version 0.8 and 0.9 Installation and User Guide. Preliminary Setup

Google Calendar 3 Version 0.8 and 0.9 Installation and User Guide. Preliminary Setup Preliminary Setup You first need to establish and create google credentials before the plugin can access your calendar. Follow the instructions in the document Setting up a Google V3 API Service Account

More information

DocuSign Connect for Salesforce Guide

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

More information

Northeast Bank Mobile Deposit Service FAQ

Northeast Bank Mobile Deposit Service FAQ Northeast Bank Mobile Deposit Service FAQ What is Northeast Bank Mobile Deposit? What items can be deposited via Northeast Bank Mobile Deposit service? What items cannot be deposited through Northeast

More information

SchoolMessenger for iphone

SchoolMessenger for iphone The SchoolMessenger app lets you quickly and easily send messages from anywhere using your iphone. Setting up and using the application is simple. This guide will show you how! [Important: Before you can

More information

WESTERNACHER OUTLOOK E-MAIL-MANAGER OPERATING MANUAL

WESTERNACHER OUTLOOK E-MAIL-MANAGER OPERATING MANUAL TABLE OF CONTENTS 1 Summary 3 2 Software requirements 3 3 Installing the Outlook E-Mail Manager Client 3 3.1 Requirements 3 3.1.1 Installation for trial customers for cloud-based testing 3 3.1.2 Installing

More information

Using the owncloud Android App

Using the owncloud Android App Using the owncloud Android App Accessing your files on your owncloud server via the Web interface is easy and convenient, as you can use any Web browser on any operating system without installing special

More information

Electronic Signature Authentication (ESA)

Electronic Signature Authentication (ESA) Electronic Signature Authentication (ESA) Resident/Fellow User Documentation For ESA Assistance, please contact Darlene Warwick at 40202 or Nancy Collier at 724-2365 or pager 762-0607 or Paula Dixon at

More information

User-password application scripting guide

User-password application scripting guide Chapter 2 User-password application scripting guide You can use the generic user-password application template (described in Creating a generic user-password application profile) to add a user-password

More information

Citrix Receiver for Mobile Devices Troubleshooting Guide

Citrix Receiver for Mobile Devices Troubleshooting Guide Citrix Receiver for Mobile Devices Troubleshooting Guide www.citrix.com Contents REQUIREMENTS...3 KNOWN LIMITATIONS...3 TROUBLESHOOTING QUESTIONS TO ASK...3 TROUBLESHOOTING TOOLS...4 BASIC TROUBLESHOOTING

More information

Integration Overview. Web Services and Single Sign On

Integration Overview. Web Services and Single Sign On Integration Overview Web Services and Single Sign On Table of Contents Overview...3 Quick Start 1-2-3...4 Single Sign-On...6 Background... 6 Setup... 6 Programming SSO... 7 Web Services API...8 What is

More information

Flexible Identity Federation

Flexible Identity Federation Flexible Identity Federation Quick start guide version 1.0.1 Publication history Date Description Revision 2015.09.23 initial release 1.0.0 2015.12.11 minor updates 1.0.1 Copyright Orange Business Services

More information

Guide for Setting Up Your Multi-Factor Authentication Account and Using Multi-Factor Authentication. Mobile App Activation

Guide for Setting Up Your Multi-Factor Authentication Account and Using Multi-Factor Authentication. Mobile App Activation Guide for Setting Up Your Multi-Factor Authentication Account and Using Multi-Factor Authentication Mobile App Activation Before you can activate the mobile app you must download it. You can have up to

More information

Two-Factor Authentication (2FA) Registration Instructions Symantec VIP Access

Two-Factor Authentication (2FA) Registration Instructions Symantec VIP Access Two-Factor Authentication (2FA) Registration Instructions Symantec VIP Access To strengthen KBR information security and safeguard company data, Information Technology will implement two-factor authentication

More information

Reference Guide TEAM. Pogoplug Team. Reference Guide. 2012 Cloud Engines Inc., All Rights Reserved.

Reference Guide TEAM. Pogoplug Team. Reference Guide. 2012 Cloud Engines Inc., All Rights Reserved. Reference Guide Pogoplug Team Reference Guide Table of Contents Table of Contents 1. What s Included 2. Getting Started 3. Customizing the Pogoplug Interface a. Custom UI b. Custom Domain Name c. Custom

More information

Cloudfinder for Office 365 User Guide. November 2013

Cloudfinder for Office 365 User Guide. November 2013 1 Contents Getting started with Cloudfinder for Office 365 1... 3 Sign up New Cloudfinder user... 3 Sign up Existing Cloudfinder user... 4 Setting the Admin Impersonation... 4 Initial backup... 7 Inside

More information

iphone and Android Apps Guide iphone and Android Apps Guide

iphone and Android Apps Guide iphone and Android Apps Guide iphone and Android Apps Guide A safe and efficient way of accessing your People s Choice Credit Union accounts, paying bills and transferring money. 1 Contents. 1. Mobile Banking using the People s Choice

More information

Business Mobile Banking Features

Business Mobile Banking Features Business Mobile Banking Features Overview There are two modes of Business Mobile Banking available. Each mode offers a different level of functionality. Business Mobile Banking App o Business Online Banking

More information

Mobile Banking FAQ for Business

Mobile Banking FAQ for Business Mobile Banking FAQ for Business General Questions 1. What is National Bank of Arizona Business Mobile Banking? Mobile Banking provides anytime access to your eligible account(s) from select mobile phones

More information

Booth Gmail Configuration

Booth Gmail Configuration Student email is accessed via a Booth branded Gmail service. Student mailboxes will be accessed via Gmail. Configure Gmail Settings Before you connect Gmail to send and receive Booth Gmail on your mobile

More information

Multi-Factor Authentication Job Aide

Multi-Factor Authentication Job Aide To start your account configuration and begin using Multi-Factor Authentication, log in to the CCHMC Multi-Factor Authentication User Portal at https://mfa.cchmc.org/multifactorauth. For assistance, please

More information

Online Services User Guide

Online Services User Guide Online Services User Guide Welcome to online banking! Whether you re online or using a mobile device, access your accounts whenever and wherever it s convenient for you. Log In: BankMidwest.com Online

More information

Business Mobile Banking

Business Mobile Banking Business Mobile Banking Union Bank & Trust Business Mobile Application User Guide Contents Overview... 2 Security... 2 Requirements... 3 Downloading the App... 3 Logging In... 4 One-time Passcode Entry...

More information

Appendix A: Encrypting a File and / or Email Message

Appendix A: Encrypting a File and / or Email Message Appendix A: Encrypting a File and / or Email Message Encryption is defined as the conversion of something to code or symbols so that its contents cannot be understood if intercepted. USDB has approved

More information

MySagePay. User Manual. Page 1 of 48

MySagePay. User Manual. Page 1 of 48 MySagePay User Manual Page 1 of 48 Contents About this guide... 4 Getting started... 5 Online help... 5 Accessing MySagePay... 5 Supported browsers... 5 The Administrator account... 5 Creating user accounts...

More information

Zinio FAQ. » I created a Library Collection account but I did not receive my confirmation email. Why not?

Zinio FAQ. » I created a Library Collection account but I did not receive my confirmation email. Why not? Zinio FAQ» I created a Library Collection account but I did not receive my confirmation email. Why not? The notification emails are sent automatically after you subscribe and should show up in your email

More information

This presentation introduces you to the new call home feature in IBM PureApplication System V2.0.

This presentation introduces you to the new call home feature in IBM PureApplication System V2.0. This presentation introduces you to the new call home feature in IBM PureApplication System V2.0. Page 1 of 19 This slide shows the agenda, which covers the process flow, user interface, commandline interface

More information

Student Quick Start Guide

Student Quick Start Guide Student Quick Start Guide Welcome to Top Hat! This guide will help you register a student account and understand how to use Top Hat for your class. Creating an Account 1. If you don t already have a previous

More information

Remote Desktop Web Access. Using Remote Desktop Web Access

Remote Desktop Web Access. Using Remote Desktop Web Access Remote Desktop Web Access What is RD Web Access? RD Web Access is a Computer Science service that allows you to access department software and machines from your Windows or OS X computer, both on and off

More information

Spring Security CAS Plugin - Reference Documentation. Burt Beckwith. Version 3.0.0.M1

Spring Security CAS Plugin - Reference Documentation. Burt Beckwith. Version 3.0.0.M1 Spring Security CAS Plugin - Reference Documentation Burt Beckwith Version 3.0.0.M1 Table of Contents 1. Introduction to the Spring Security CAS Plugin.................................................

More information

Office365Mon Subscription Management API

Office365Mon Subscription Management API Office365Mon Subscription Management API Office365Mon provides a set of APIs for managing subscriptions in our service. With it you can do things like create a subscription, change the details about the

More information

Drop Shipping. Contents. Overview 2. Quick Tips 3. Basic Setup 4. Drop Ship Options 5. File Pickup Options 6. E-Mail Messages 8

Drop Shipping. Contents. Overview 2. Quick Tips 3. Basic Setup 4. Drop Ship Options 5. File Pickup Options 6. E-Mail Messages 8 Contents Overview 2 Quick Tips 3 Basic Setup 4 Drop Ship Options 5 File Pickup Options 6 E-Mail Messages 8 The Drop Shipments Log 9 Maxum Development Corp. Overview One very common file transfer task is

More information

SHC Client Remote Access User Guide for Citrix & F5 VPN Edge Client

SHC Client Remote Access User Guide for Citrix & F5 VPN Edge Client SHC Client Remote Access User Guide for Citrix & F5 VPN Edge Client Version 1.1 1/15/2013 This remote access end user reference guide provides an overview of how to install Citrix receiver (a required

More information

Welcome to ECBuzz.com! Please go through this document carefully to make the experience of owning and using a website an enjoyable one.

Welcome to ECBuzz.com! Please go through this document carefully to make the experience of owning and using a website an enjoyable one. Sales call: 90116 90305 Sales email: sales@ecbuzz.com Support email: support@ecbuzz.com Welcome to ECBuzz.com! Please go through this document carefully to make the experience of owning and using a website

More information

Title page. Alcatel-Lucent 5620 SERVICE AWARE MANAGER 13.0 R7

Title page. Alcatel-Lucent 5620 SERVICE AWARE MANAGER 13.0 R7 Title page Alcatel-Lucent 5620 SERVICE AWARE MANAGER 13.0 R7 APPLICATION API DEVELOPER GUIDE 3HE-10590-AAAA-TQZZA Issue 1 December 2015 Legal notice Legal notice Alcatel, Lucent, Alcatel-Lucent and the

More information

8x8 Virtual Office Click2Pop for eagent Setup Guide

8x8 Virtual Office Click2Pop for eagent Setup Guide 8x8 Virtual Office April 2012 Table of Contents 8x8 Click2Pop for eagent... 3 8x8 Click2Pop provides eagent CRM with two functions:... 3 Requirements.... 3 Installation... 3 Start the Application and Integrate

More information

Force.com REST API Developer's Guide

Force.com REST API Developer's Guide Force.com REST API Developer's Guide Version 35.0, Winter 16 @salesforcedocs Last updated: December 10, 2015 Copyright 2000 2015 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark

More information

Instructions for Accessing the Hodges University Virtual Lab

Instructions for Accessing the Hodges University Virtual Lab Instructions for Accessing the Hodges University Virtual Lab Table of Contents Adding the VLAB as a Trusted Site... 3 Accessing the VLAB using Windows 8... 5 Using Internet Explorer and Windows 8 to Access

More information

Google 2 factor authentication User Guide

Google 2 factor authentication User Guide Information Technology Services Centre Google 2 factor authentication User Guide Description: This guide describes how to setup Two factor authentication for your Google account. Version: 1.0 Link: Effective

More information

Commerce Services Documentation

Commerce Services Documentation Commerce Services Documentation This document contains a general feature overview of the Commerce Services resource implementation and lists the currently implemented resources. Each resource conforms

More information