BLUEFIN QUICKSWIPE API LIBRARY. Processing API s for QuickSwipe Mobile / QuickSwipe mpos

Size: px
Start display at page:

Download "BLUEFIN QUICKSWIPE API LIBRARY. Processing API s for QuickSwipe Mobile / QuickSwipe mpos"

Transcription

1 BLUEFIN QUICKSWIPE API LIBRARY Processing API s for QuickSwipe Mobile / QuickSwipe mpos 1

2 Contents Introduction QuickSwipe API Library... 4 JSON REST API Format... 4 Account API... 5 Users API... 9 Items API Transactions API Tax Rates API Categories Settings

3 Bluefin has made efforts to ensure the accuracy and completeness of the information in this document. However, Bluefin disclaims all representations, warranties and conditions, whether express or implied, arising by statute, operation of law, usage of trade, course of dealing or otherwise, with respect to the information contained herein. Bluefin assumes no liability to any party for any loss or damage, whether direct, indirect, incidental, consequential, special or exemplary, with respect to (a) the information; and/or (b) the evaluation, application or use of any product or service described herein. Bluefin disclaims any and all representation that its products or services do not infringe upon any existing or future intellectual property rights. Bluefin owns and retains all right, title and interest in and to the Bluefin intellectual property, including without limitation, its patents, marks, copyrights and technology associated with the Bluefin services. No title or ownership of any of the foregoing is granted or otherwise transferred hereunder. Bluefin reserves the right to make changes to any information herein without further notice. Related Bluefin Trademarks Bluefin Bluefin Payment Systems QuickSwipe PayConex FraudFirewall Swipe Over IP 2015 All Rights Reserved S. 129 th E. Ave., Suite 101, Tulsa, OK Toll Free (800) Phone (918) Fax (918) efax (918) UPDATED: May 27, 2015 Document Version

4 Introduction QuickSwipe API Library This document reviews Bluefin s QuickSwipe family of Application Programming Interface (API) services. These services provide our clients with user, product, category, and order-level management pertaining to the QuickSwipe mobile app and POS system. JSON REST API Format Every request that requires authentication will require that a token be passed in the url?token=abcde. A token will be generated during a successful login request Parameter & s Unless noted all strings will have a maximum length of 255 characters. Unless noted all decimal values will have a 2 decimal place precision. True or false parameters should be posted using either a 1 or 0. o Including the parameter without a value will be typecasted to false. File upload will require that a multipart/form-data post be made. Date/Time values will be returned using the following format: o YYYY-MM-DD HH:MM:SS 4

5 Account API End Points Login Logout Account Information Update 5

6 Login Will generate and save an authenticity token. URL: /api/json/account/login/ Method: POST curl \ -d "account_id=12345" \ -d " =admin@example.org" \ -d "password=admin" Arguments account_id: integer (required) string (required) passsword: string (required) HTTP/ OK Content-Type: application/json; charset=utf-8 } "id" : 8, "company_id" : 1, "retired" : false, "confirmed" : true, "first_name" : "John", "last_name" : "Doe", " " : "john.doe@example.org", "role" : "admin", "time_zone" : "America\/Chicago", "token" : "535e787c-7fc4-4d8c f00abbf825", "photo" : "", "mobile" : "", "permission_items_manage" : false, "permission_items_retire" : false, "permission_transactions_discount" : false, "permission_transactions_refund" : false, "permission_transactions_tax_exempt": false, "modified" : " :49:16", "created" : " :43:48" 6

7 Logout Will remove the user's authenticity token. URL: /api/json/account/logout/ Method: GET curl HTTP/ No Content 7

8 Account Information URL: /api/json/account/ Method: GET curl HTTP/ OK Content-Type: application/json; charset=utf-8 } "id" : 8, "company_id" : 1, "retired" : false, "confirmed" : true, "first_name" : "John", "last_name" : "Doe", " " : "john.doe@example.org", "role" : "admin", "time_zone" : "America\/Chicago", "token" : "535e787c-7fc4-4d8c f00abbf825", "photo" : "", "mobile" : "", "permission_items_manage" : false, "permission_items_retire" : false, "permission_transactions_discount" : false, "permission_transactions_refund" : false, "permission_transactions_tax_exempt": false, "modified" : " :49:16", "created" : " :43:48" 8

9 Users API Endpoints List Create View Update Delete 9

10 List URL: /api/json/users/ Method: GET curl HTTP/ OK Content-Type: application/json; charset=utf-8 [ ] } "id" : 8, "company_id" : 1, "retired" : false, "confirmed" : true, "first_name" : "John", "last_name" : "Doe", " " : "john.doe@example.org", "role" : "admin", "time_zone" : "America\/Chicago", "token" : "535e787c-7fc4-4d8c f00abbf825", "photo" : "", "mobile" : "", "permission_items_manage" : false, "permission_items_retire" : false, "permission_transactions_discount" : false, "permission_transactions_refund" : false, "permission_transactions_tax_exempt": false, "modified" : " :49:16", "created" : " :43:48" 10

11 Create URL: /api/json/users/ Method: POST curl \ -F " =new-clerk@example.org" \ -F "password=p@ssw0rd" \ -F "role=clerk" \ -F "photo=@file.jpg" Arguments string (required) password: string (required) role: admin clerk (required) photo: file permission_items_manage: boolean permission_items_active: boolean permission_transactions_discount: boolean permission_transactions_refund: boolean permission_transactions_tax_exempt: boolean HTTP/ Created Location: /api/json/users/9/ Content-Type: application/json; charset=utf-8 "id" : 9, "company_id" : 1, "retired" : false, "confirmed" : true, "first_name" : "John", "last_name" : "Doe", " " : "new-clerk@example.org", "role" : "admin", "time_zone" : "America\/Chicago", "token" : "535e787c-7fc4-4d8c f00abbf825", "photo" : " "mobile" : "", "permission_items_manage" : false, "permission_items_retire" : false, "permission_transactions_discount" : false, "permission_transactions_refund" : false, "permission_transactions_tax_exempt": false, "modified" : " :49:16", "created" : " :43:48" 11

12 } 12

13 View URL: /api/json/users/1/ Method: GET curl HTTP/ OK Content-Type: application/json; charset=utf-8 } "id" : 9, "company_id" : 1, "retired" : false, "confirmed" : true, "first_name" : "John", "last_name" : "Doe", " " : "john.doe@example.org", "role" : "admin", "time_zone" : "America\/Chicago", "token" : "535e787c-7fc4-4d8c f00abbf825", "photo" : "", "mobile" : "", "permission_items_manage" : false, "permission_items_retire" : false, "permission_transactions_discount" : false, "permission_transactions_refund" : false, "permission_transactions_tax_exempt": false, "modified" : " :49:16", "created" : " :43:48" 13

14 Update URL: /api/json/users/1/ Method: PUT curl \ -F " =old-clerk@example.org" \ -F "photo=@file.jpg" Arguments string password: string role: admin clerk photo: file permission_items_manage: boolean permission_items_active: boolean permission_transactions_discount: boolean permission_transactions_refund: boolean permission_transactions_tax_exempt: boolean HTTP/ OK Content-Type: application/json; charset=utf-8 } "id" : 8, "company_id" : 1, "retired" : false, "confirmed" : true, "first_name" : "John", "last_name" : "Doe", " " : "john.doe@example.org", "role" : "admin", "time_zone" : "America\/Chicago", "token" : "535e787c-7fc4-4d8c f00abbf825", "photo" : "", "mobile" : "", "permission_items_manage" : false, "permission_items_retire" : false, "permission_transactions_discount" : false, "permission_transactions_refund" : false, "permission_transactions_tax_exempt": false, "modified" : " :49:16", "created" : " :43:48" 14

15 Delete URL: /api/json/users/11/ Method: DELETE curl -X DELETE HTTP/ No Content 15

16 Items API End Points List/Filter Create View Update 16

17 List / Filter URL: /api/json/items/ Method: GET Arguments (optional) amount: integer - Number of results to return contains: integer - Offset amount retired: boolean favorite: boolean price_min: float price_max: float created_by_id: integer category_id: integer curl HTTP/ OK Content-Type: application/json; charset=utf-8 [ "id" :614, "company_id" :1, "created_by_id" :4, "tax_rate_id" :null, "canonical_id" :196, "version" :"current", "name" :"Race Car", "price" :2.5, "sku" :"0", "note" :"This is a note", "photo" :" "retired" :false, "favorite" :true, "use_default_tax" :true, "recurring" :true, "recurring_schedule":"monthly_1", "recurring_payments":7, "modified" :" :48:27", "created" :" :41:06", "tax_rate" : "id" :2, "company_id":1, "name" :"County Tax", "amount" :2.25, "modified" :" :19:26", "created" :" :19:26" }, 17

18 ] } "categories":[ "id" :7, "company_id":1, "name" :"Toys", "photo" :null, "modified" :" :49:26", "created" :" :35:00" } ] 18

19 Create URL: /api/json/items/ Method: POST Arguments name: string (required) price: float (required) category_ids: integer list tax_rate_id: integer sku: string photo: file note: string retired: true favorite: boolean use_default_tax: boolean recurring: boolean recurring_schedule: string curl \ -F "name=a New Item" \ -F "price=3.99" \ -F "tax_rate_id=1" \ -F "category_ids=1,2" \ -F "photo=@file.jpg" HTTP/ Created Location: /api/json/items/1/ Content-Type: application/json; charset=utf-8 "id" :1, "company_id" :1, "created_by_id" :2, "tax_rate_id" :1, "canonical_id" :1, "version" :"current", "name" :"A New Item", "price" :3.99, "sku" :null, "note" :null, "photo" :" "retired" :false, "favorite" :false, "use_default_tax" :false, "recurring" :false, "recurring_schedule":null, "recurring_payments":null, "modified" :" :43:03", "created" :" :43:00", 19

20 } "tax_rate" : "id" :1, "company_id":1, "name" :"Illinois State Tax", "amount" :6.25, "modified" :" :19:26", "created" :" :19:26" }, "categories" :[ "id" :1, "company_id":1, ] }, } "name" :"Electronics", "photo" :null, "modified" :" :43:03", "created" :" :19:26" "id" :2, "company_id":1, "name" :"Books", "photo" :null, "modified" :" :43:03", "created" :" :19:26" 20

21 View URL: /api/json/items/:canonical_id/ Method: GET Arguments id: integer (optional) used to retrieve the item by id instead of canonical_id curl HTTP/ OK Content-Type: application/json; charset=utf-8 "id" :1, "company_id" :1, "created_by_id" :2, "tax_rate_id" :1, "canonical_id" :1, "version" :"current", "name" :"A New Item", "price" :3.99, "sku" :null, "note" :null, "photo" :" "retired" :false, "favorite" :false, "use_default_tax" :false, "recurring" :false, "recurring_schedule":null, "recurring_payments":null, "modified" :" :43:03", "created" :" :43:00", "tax_rate" : "id" :1, "company_id":1, "name" :"Illinois State Tax", "amount" :6.25, "modified" :" :19:26", "created" :" :19:26" }, "categories" :[ "id" :1, "company_id":1, "name" :"Electronics", "photo" :null, "modified" :" :43:03", 21

22 } ] }, } "created" :" :19:26" "id" :2, "company_id":1, "name" :"Books", "photo" :null, "modified" :" :43:03", "created" :" :19:26" 22

23 Update URL: /api/json/items/1/ Method: POST Arguments name: string price: float category_ids: integer list tax_rate_id: integer sku: string photo: file note: string retired: true favorite: boolean use_default_tax: boolean recurring: boolean recurring_schedule: string curl \ -d "name=my EBook" HTTP/ OK Content-Type: application/json; charset=utf-8 "id" :2, "company_id" :1, "created_by_id" :2, "tax_rate_id" :1, "canonical_id" :1, "version" :"current", "name" :"My EBook", "price" :3.99, "sku" :null, "note" :null, "photo" :" "retired" :false, "favorite" :false, "use_default_tax" :false, "recurring" :false, "recurring_schedule":null, "recurring_payments":null, "modified" :" :43:03", "created" :" :43:00", "tax_rate" : "id" :1, "company_id":1, "name" :"Illinois State Tax", "amount" :6.25, 23

24 } "modified" :" :19:26", "created" :" :19:26" }, "categories" :[ "id" :1, "company_id":1, "name" :"Electronics", ] }, } "photo" :null, "modified" :" :43:03", "created" :" :19:26" "id" :2, "company_id":1, "name" :"Books", "photo" :null, "modified" :" :43:03", "created" :" :19:26" 24

25 Transactions API Endpoints List, Filter, Search Create View Update Photo Signature Receipt 25

26 List, Filter, Search URL: /api/json/transactions/ Method: GET Arguments (optional) amount: integer - Number of results to return contains: integer - Offset amount search: string tax_exempt: boolean tips: boolean recurring: boolean discounted: boolean date_min: date date_max: date price_min: float price_max: float cashier_id: integer curl HTTP/ OK Content-Type: application/json; charset=utf-8 [ "id" : 1, "company_id" : 1, "user_id" : 1, "token" : " ", "custom_id" : null, " " : null, "discount" : 7, "discount_description": "Discount", "item_total" : null, "subtotal" : 549, "tip" : 3, "tax" : null, "total" : 9160, "item_count" : 6, "tender_type" : "CARD", "latitude" : , "longitude" : , "city" : "Hindeloopen", "state" : "Fr", 26

27 ] } "note" : "Aliquam erat volutpat. Nulla dignissim.maecenas", "tax_exempt" : true, "billing_name" : "Cade Fowler", "billing_address_1" : " Metus. Ave", "billing_address_2" : null, "billing_city" : "Hindeloopen", "billing_state" : "Fr", "billing_zip_code" : "22774", "card_brand" : "Visa", "card_last4" : 8852, "card_expiration" : "0114", "recurring" : false, "recurring_status" : null, "recurring_token" : null, "recurring_schedule" : "MONTHLY_1", "recurring_start_date": null, "recurring_cancelled" : false, "refund_token" : null, "refund_amount" : null, "refund_reason" : null, "photo" : null, "signature" : null, "modified" : " :00:00", "created" : " :00:00", "line_items" : [ "id" : 2, "transaction_id": 2, "item_id" : 1, "canonical_id" : 1, "quantity" : 10, "tax_rate" : null, "modified" : " :19:32", "created" : " :19:32" } ] 27

28 Create URL: /api/json/transactions/ Method: POST Arguments token: integer (Bluefin Transaction ID) subtotal: float discount: float tip: float total: float (REQUIRED) tender_type: string (CARD, MANUAL, ACH, EBT, GIFT, CASH) status: string latitude: float (11, 8) longitude: float (11, 8) note: string tax_exempt: boolean billing_name: string billing_address_1: string, billing_address_2: string, billing_city: string, billing_state: string, billing_zip_code: string, card_last4: integer, recurring: boolean, recurring_schedule: string (MONTHLY_1, MONTHLY_2,...), photo: file, signature: file, line_items[0][item_id]: integer line_items[0][canonical_id]: integer line_items[0][quantity]: integer line_items[0][tax_rate]: float line_items[1][name]: string line_items[1][price]: float line_items[1][quantity]: integer line_items[1][tax_rate]: float curl \ -F "token=402732" \ -F "subtotal=100" \ -F "discount=10" \ -F "tip=14.7" \ -F "total=112.70" \ -F "photo=@file.jpg" \ -F "signature=@file.jpg" \ -F "line_items[0][item_id]=1" \ -F "line_items[0][canonical_id]=1" \ -F "line_items[0][quantity]=10" \ -F "line_items[1][name]=custom Item" \ -F "line_items[1][price]=12.34" \ -F "line_items[1][notes]=this is a custom item" \ 28

29 -F HTTP/ Created Content-Type: application/json; charset=utf-8 Location: /api/json/transactions/2/ "id": 2, "company_id": 1, "user_id": 12, "token": , "subtotal": 100, "discount": 10, "tip": 14.7, "total": , "tender_type": null, "latitude": null, "longitude": null, "note": null, "tax_exempt": false, "billing_name": null, "billing_address_1": null, "billing_address_2": null, "billing_city": null, "billing_state": null, "billing_zip_code": null, "card_last4": null, "recurring": null, "recurring_schedule": null, "photo": file.jpg, "signature": file.jpg, "modified": " :19:32", "created": " :19:32", "line_items":[ "id": 1, "transaction_id": 1, "item_id": 1, "canonical_id": 1, "quantity": 10, "tax_rate": null, "modified": " :19:32", "created": " :19:32" } ] } View 29

30 URL: /api/json/transactions/ Method: GET curl HTTP/ OK Content-Type: application/json; charset=utf-8 "id": 1, "company_id": 1, "user_id": 12, "subtotal": 100, "discount": 10, "tip": 14.7, "total": 112.7, "tender_type": null, "latitude": null, "longitude": null, "note": null, "tax_exempt": false, "billing_name": null, "billing_address_1": null, "billing_address_2": null, "billing_city": null, "billing_state": null, "billing_zip_code": null, "card_last4": null, "recurring": null, "recurring_schedule": null, "photo": " "signature": " "modified": " :35:52", "created": " :35:52", "line_items": [ "id": 1, "transaction_id": 1, "item_id": 1, "canonical_id": 1, "quantity": 10, "tax_rate": null, "modified": " :35:52", "created": " :35:52" } ] 30

31 } 31

32 Receipt URL: /api/json/transactions/1/receipt Method: POST Arguments string (required) curl \ -d " =support@bluefin.com" HTTP/ OK Content-Type: application/json; charset=utf-8 32

33 Refund URL: /api/json/transactions/1/refund Method: POST Arguments refund_amount: float line_item_ids: array curl \ -d "refund_amount=1" \ -d "line_items[]=1" \ -d "line_items[]=2" HTTP/ OK Content-Type: application/json; charset=utf-8 "id": 1, "company_id": 1, "user_id": 12, "subtotal": 100, "discount": 10, "tip": 14.7, "total": 112.7, "tender_type": null, "latitude": null, "longitude": null, "note": null, "tax_exempt": false, "billing_name": null, "billing_address_1": null, "billing_address_2": null, "billing_city": null, "billing_state": null, "billing_zip_code": null, "card_last4": null, "recurring": null, "recurring_schedule": null, "photo": " "signature": " "modified": " :35:52", "created": " :35:52", "line_items": [ 33

34 } ] }, } "id": 1, "transaction_id": 1, "item_id": 1, "canonical_id": 1, "quantity": 10, "tax_rate": null, "modified": " :35:52", "created": " :35:52" "id": 1, "transaction_id": 1, "quantity": 1, "price": -1.99, "tax_rate": null, "modified": " :35:52", "created": " :35:52" 34

35 Tax Rates API Endpoints List Create View Update Delete 35

36 List URL: /api/json/tax-rates/ Method: GET Arguments (optional) amount: contains: integer - Number of results to return integer - Offset amount curl HTTP/ OK Content-Type: application/json; charset=utf-8 [ ] } "id": 1, "company_id": 1, "name": "State Tax", "amount": 7.25, "modified": " :07:24", "created": " :07:24" 36

37 Create URL: /api/json/tax-rates/ Method: POST Arguments name: string (required) amount: decimal (required) curl \ -d "name=state Tax" \ -d "amount=7.25" \ HTTP/ Created Content-Type: application/json; charset=utf-8 Location: /api/json/tax-rates/1/ } "id": 1, "company_id": 1, "name": "State Tax", "amount": 7.25, "modified": " :38:01", "created": " :38:01" 37

38 View URL: /api/json/tax-rates/1/ Method: GET curl HTTP/ OK Content-Type: application/json; charset=utf-8 } "id": 1, "company_id": 1, "name": "State Tax", "amount": 6.25, "modified": " :38:01", "created": " :38:01" 38

39 Update URL: /api/json/tax-rates/1/ Method: POST Arguments name: amount: retired: string decimal boolean curl \ -d "name=state Tax" \ -d "amount=6.25" HTTP/ OK Content-Type: application/json; charset=utf-8 } "id": 1, "company_id": 1, "name": "State Tax", "amount": 6.25, "modified": " :38:01", "created": " :38:01" 39

40 Delete URL: /api/json/tax-rates/1/ Method: DELETE curl \ -X DELETE HTTP/ No Content 40

41 Categories Endpoints List Create View Update Delete 41

42 List URL: /api/json/categories/ Method: GET Arguments (optional) amount: contains: integer - Number of results to return integer - Offset amount curl HTTP/ OK Content-Type: application/json; charset=utf-8 [ ] } "id": 1, "company_id": 1, "name": "Shoes", "photo": " "modified": " :11:21", "created": " :11:21" 42

43 Create URL: /api/json/categories/ Method: POST Arguments name: string (required) photo: file curl \ -F "name=shoes" \ -F "photo=@file.jpg" HTTP/ Created Content-Type: application/json; charset=utf-8 Location: /api/json/categories/1/ } "id": 3, "company_id": 1, "name": "Shoes", "photo": " "modified": " :20:56", "created": " :20:56", 43

44 View URL: /api/json/categories/1/ Method: GET curl HTTP/ OK Content-Type: application/json; charset=utf-8 } "id": 1, "company_id": 1, "name": "Shoes", "photo": " "modified": " :11:21", "created": " :11:21" 44

45 Update URL: /api/json/categories/1/ Method: POST curl \ -F "name=shoes" \ -F "photo=@file" HTTP/ OK Content-Type: application/json; charset=utf-8 } "id": 1, "company_id": 1, "name": "Shoes", "photo": " "modified": " :11:21", "created": " :11:21" 45

46 Delete URL: /api/json/categories/1/ Method: DELETE curl \ -X DELETE HTTP/ No Content 46

47 Settings Endpoints View Update 47

48 View URL: /api/json/settings/ Method: GET curl HTTP/ OK Content-Type: application/json; charset=utf-8 "id" : 1, "retired" : false, "name" : "Bluefin Payment Systems", " " : "inquiries@bluefin.com", "color" : "A4C53F", "phone" : " ", "address_1" : "314 West Superior Street", "address_2" : "Suite 501", "city" : "Chicago", "state" : "IL", "zip_code" : "60654", "time_zone" : "America\/Chicago", "logo" : null, "website" : " "facebook" : " Systems/ ", "twitter" : "BluefinPayments", "postback" : " "api_account_id" : "", "api_access_key" : "", "card_processor" : null, "merchant_number" : null, "terminal_number" : null, "industry_type" : null, "default_tax_rate" : 9.25, "tip_1" : 10, "tip_2" : 15, "tip_3" : 20, "allow_taxes" : false, "allow_tips" : false, "allow_refunds" : false, "require_zip_code" : false, "use_terminal_view": false, "modified" : " :43:35", "created" : " :43:35" 48

49 } 49

50 Update URL: /api/json/settings/ Method: POST curl \ -F "logo=@file.jpg" \ -F "color=#111111" HTTP/ OK Content-Type: application/json; charset=utf-8 "id" : 1, "retired" : false, "name" : "Bluefin Payment Systems", " " : "inquiries@bluefin.com", "color" : "A4C53F", "phone" : " ", "address_1" : "314 West Superior Street", "address_2" : "Suite 501", "city" : "Chicago", "state" : "IL", "zip_code" : "60654", "time_zone" : "America\/Chicago", "logo" : " "website" : " "facebook" : " Systems/ ", "twitter" : "BluefinPayments", "postback" : " "api_account_id" : "", "api_access_key" : "", "card_processor" : null, "merchant_number" : null, "terminal_number" : null, "industry_type" : null, "default_tax_rate" : 9.25, "tip_1" : 10, "tip_2" : 15, "tip_3" : 20, "allow_taxes" : false, "allow_tips" : false, "allow_refunds" : false, "require_zip_code" : false, "use_terminal_view": false, 50

51 } "modified" : " :43:35", "created" : " :43:35" 51

52 Misc Error Messages "error": "Error message"} 52

QuickSwipe Web User Guide

QuickSwipe Web User Guide QuickSwipe Web User Guide Bluefin Payment Systems Release 12/20/2013 Table of Contents Table of Contents... 1 Overview... 3 Log In... 3 Management... 5 Users... 5 Adding Users... 6 Editing Users... 8 Deleting

More information

Merchant Web Services API

Merchant Web Services API Merchant Web Services API Customer Information Manager (CIM) XML Guide Authorize.Net Developer Support http://developer.authorize.net Authorize.Net LLC 082007 Ver.1.0 Authorize.Net LLC ( Authorize.Net

More information

Custom Location Extension

Custom Location Extension Custom Location Extension User Guide Version 1.4.9 Custom Location Extension User Guide 2 Contents Contents Legal Notices...3 Document Information... 4 Chapter 1: Overview... 5 What is the Custom Location

More information

DPD API Reference Documentation

DPD API Reference Documentation DPD API Reference Documentation Release 2.0 Portal Labs, LLC May 09, 2017 CONTENTS 1 DPD API 3 1.1 About................................................... 3 2 Authentication 5 3 Limitations 7 3.1 Pagination................................................

More information

esss Release Notes Version 4.0 Service Pack 1

esss Release Notes Version 4.0 Service Pack 1 esss Release Notes Version 4.0 Service Pack 1 May, 2012 Copyright Information Copyright 2012 Nodus Technologies, Inc. All rights reserved. - Copyright 2004, 2005, 2006, 2007, 2008 BV Software. All rights

More information

Public Appointment API. Calendar A

Public Appointment API. Calendar A Public Appointment API Calendar 205.01A Copyright notice The information in this document is subject to change without prior notice and does not represent a commitment on the part of Q-MATIC AB. All efforts

More information

Portico VT. User Guide FOR HEARTLAND MERCHANT USERS APRIL 2015 V2.8

Portico VT. User Guide FOR HEARTLAND MERCHANT USERS APRIL 2015 V2.8 Portico VT User Guide FOR HEARTLAND MERCHANT USERS APRIL 2015 V2.8 Notice THE INFORMATION CONTAINED HEREIN IS PROVIDED TO RECIPIENT "AS IS" WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT

More information

EnviroChain API. Version /18/17

EnviroChain API. Version /18/17 EnviroChain API Version 1.0.3 12/18/17 Table of Contents 1 API Features... 3 1.1 Versioning... 3 1.2 Logging... 3 1.3 Swagger... 4 2 Data Model... 5 3 Workflows... 6 3.1 Lab User Creates a CoC... 6 4 User

More information

Cloud Elements CRM Hub Provisioning and Usage Guide

Cloud Elements CRM Hub Provisioning and Usage Guide Cloud Elements CRM Hub Provisioning and Usage Guide API Version 2.0 Page!1 Introduction The CRM Hub provides a uniform API that allows applications to use various endpoints such as Salesforce, Zoho, SugarCRM,

More information

Server - The Tigo platform and urls associated with the api Client - Third party user with api access to the Tigo platform and/or Tigo api.

Server - The Tigo platform and urls associated with the api Client - Third party user with api access to the Tigo platform and/or Tigo api. Tigo REST API V3 Introduction This api is used to work with the Tigo Energy platform to automate the retrieval and creation of elements. It will attempt to adhere to standard REST calls found in most REST

More information

Merchant Dashboard User Guide

Merchant Dashboard User Guide Merchant Dashboard User Guide February 10, 2015 Contents Dashboard... 3 Transactions... 5 Items... 7 Users... 9 Reports... 10 Account Settings... 11 2 Dashboard On the Dashboard page, you can get summaries

More information

WooCommerce REST API Integration. October 27, 2018

WooCommerce REST API Integration. October 27, 2018 WooCommerce REST API Integration October 27, 2018 Andrew Duncan CEO/Owner/Developer Databuzz The ecommerce platform for WordPress The world s most customisable ecommerce platform The most popular ecommerce

More information

USER S GUIDE Last Modified: 04/08/2013 1

USER S GUIDE Last Modified: 04/08/2013 1 USER S GUIDE Last Modified: 04/08/2013 1 Contents 1 Welcome 1 Activating ROAMpay X4 2 Using the System 2 Login 2 First-time Login 2 Default Settings 3 Retrieving Your Password 3 Online Sales 4 Saved Item

More information

StorageGRID Webscale NAS Bridge Management API Guide

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

More information

Microsoft Dynamics GP Release Integration Guide For Microsoft Retail Management System Headquarters

Microsoft Dynamics GP Release Integration Guide For Microsoft Retail Management System Headquarters Microsoft Dynamics GP Release 10.0 Integration Guide For Microsoft Retail Management System Headquarters Copyright Copyright 2007 Microsoft Corporation. All rights reserved. Complying with all applicable

More information

REST API FOR CREATING REAL TIME REMOTE LUNCH INVITATIONS

REST API FOR CREATING REAL TIME REMOTE LUNCH INVITATIONS API Integration REST API FOR CREATING REAL TIME REMOTE LUNCH INVITATIONS V2.0 EATNGAGE CONFIDENTAL AND PROPRIATERAY 7915 Westglen Dr. Houston Texas, 77063 Support@eatNgage.com 713-429-4757 Table of Contents

More information

PonyExpress API V1. The PonyExpress API allows you to perform operations that you do with our web client.

PonyExpress API V1. The PonyExpress API allows you to perform operations that you do with our web client. PonyExpress API V1 INTRODUCTION The PonyExpress API allows you to perform operations that you do with our web client. GETTING STARTED APIs requires a minimum of two mandatory headers. Content-Type : application/json

More information

Authentication Provider - Facebook. Setup Guide

Authentication Provider - Facebook. Setup Guide Authentication Provider - Facebook Setup Guide Disclaimer THIS DOCUMENTATION AND ALL INFORMATION CONTAINED HEREIN ( MATERIAL ) IS PROVIDED FOR GENERAL INFORMATION PURPOSES ONLY. GLOBAL REACH AND ITS LICENSORS

More information

Authorize.Net Mobile Application

Authorize.Net Mobile Application Authorize.Net Mobile Application Version 3.6 for ios and Android User Guide September 2018 Authorize.Net Developer Support https://developer.authorize.net Authorize.Net LLC 082007 Ver.2.0 Authorize.Net

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

ROAMpay TM. X4 User's Guide

ROAMpay TM. X4 User's Guide ROAMpay TM X4 User's Guide Last Modified: 06/14/2013 Contents 1 Activating ROAMpay X4 2 Using the System 2 Login 2 First-time Login 2 Default Settings 3 Retrieving Your Password 3 Online Sales 4 Saved

More information

ProPay Mobile Application Customization via URL Scheming

ProPay Mobile Application Customization via URL Scheming ProPay Mobile Application Customization via URL Scheming Contents 1.0 Purpose and Technical Basics... 4 2.0 Request Functionality... 5 3.0 Returned Values... 6 4.0 Diagram ProPay mobile app behavior based

More information

2017 WorkPlace Mobile Application

2017 WorkPlace Mobile Application 2017 WorkPlace Mobile Application User Guide Paramount WorkPlace 2017 and Greater Table of Contents OVERVIEW... 3 GETTING STARTED... 3 Communication Architecture... 3 Mobile Device Requirements... 4 Establish

More information

Epson Professional Imaging

Epson Professional Imaging Epson Professional Imaging Epson Gemini 2 to Epson Gemini K3 Upgrade Program Epson Gemini 2 Customer Information All Fields Required Company Name Gemini K3 Ship To Information Ship To Location Use Same

More information

Box Connector. Version 2.0. User Guide

Box Connector. Version 2.0. User Guide Box Connector Version 2.0 User Guide 2016 Ping Identity Corporation. All rights reserved. PingFederate Box Connector User Guide Version 2.0 March, 2016 Ping Identity Corporation 1001 17th Street, Suite

More information

Sage Mobile Payments User's Guide

Sage Mobile Payments User's Guide Sage Mobile Payments User's Guide Last Modified: 8/4/2014 Contents 1 Activating Sage Mobile Payments 2 Using the System 2 Login 2 Multi user Login 2 First-time Login 3 Default Settings 3 Retrieving Your

More information

Crestron Virtual Control REST API

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

More information

HappyFox API Technical Reference

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

More information

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

Cisco Unified Workforce Optimization Quality Management

Cisco Unified Workforce Optimization Quality Management Cisco Unified Workforce Optimization Quality Management Server API Programmer's Guide Version 10.5 First Published: June 18, 2014 Last Updated: February 11, 2015 THE SPECIFICATIONS AND INFORMATION REGARDING

More information

Nuance Management Console Guidelines for Distributors

Nuance Management Console Guidelines for Distributors Nuance Management Console Guidelines for Distributors 1 Nuance Management Console Guidelines for Distributors Copyright Dragon Medical Practice Edition Nuance Management Center. 2018 Nuance Communications,

More information

MERCHANT MANUAL. Direct Connect Copyright 2016, All Rights Reserved.

MERCHANT MANUAL. Direct Connect Copyright 2016, All Rights Reserved. MERCHANT MANUAL Direct Connect Copyright 2016, All Rights Reserved www.directconnectps.com Table of Contents Overview... 5 The Gateway... 6 Logon as a Merchant... 7 Adding a New User... 11 Finding and

More information

U s e r s g U i d e 1

U s e r s g U i d e 1 User s guide 1 Contents 2 Welcome 3 User Service Activation 4 Introduction 4 Purpose 5 Key Features 6 Activation 8 Using the System 8 Login 9 Credit Sale 10 For Swipe Capable Devices 10 For Manual Entry

More information

SafeNet Authentication Service

SafeNet Authentication Service SafeNet Authentication Service Integration Guide All information herein is either public information or is the property of and owned solely by Gemalto NV. and/or its subsidiaries who shall have and keep

More information

Product Release Information

Product Release Information Product Release Information Product: Cyberoam Release Number: 9.4.1 build 2 Release Date: 20 th March, 2007 Compatible versions: 9.4.1. build 0 Upgrade: Auto Upgrade Customer Support: For more information

More information

Cisco Nexus 1000V for KVM OpenStack REST API Configuration Guide, Release 5.x

Cisco Nexus 1000V for KVM OpenStack REST API Configuration Guide, Release 5.x Cisco Nexus 1000V for KVM OpenStack REST API Configuration Guide, Release 5.x First Published: August 01, 2014 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA

More information

TRANSACTIONS EXPORT API

TRANSACTIONS EXPORT API TRANSACTIONS EXPORT API Specifications Document ID: TransExportAPI Document Version: 1.3 Prepared for: CHARGE Anywhere 4041B Hadley Rd South Plainfield, NJ 07080 Phone + 1 (800) 211-1256 Fax + 1 (732)

More information

//index. Chapter Content Page Part One: Bluefin Support. Part Two: Logging In Part Three: Integration Part Four: Processing. Part Five: Reporting

//index. Chapter Content Page Part One: Bluefin Support. Part Two: Logging In Part Three: Integration Part Four: Processing. Part Five: Reporting MANUAL 1 //index Chapter Content Page Part One: Bluefin Support Part Two: Logging In Part Three: Integration Part Four: Processing Part Five: Reporting Part Six: Settings Part Seven: Receipts Part Eight:

More information

Body: JSON Message representing a Transaction object (See Transaction Objects for Details)

Body: JSON Message representing a Transaction object (See Transaction Objects for Details) Overview SixthCents API is REST based and exposes HTTP endpoints. The API has several URLs and all responses are standard HTTP codes so you easily know what the outcome of an operation was. Authentication

More information

AvePoint Office Connect Online Manager 1.0

AvePoint Office Connect Online Manager 1.0 AvePoint Office Connect Online Manager 1.0 Administration Guide Issued August 2017 1 Table of Contents Introduction...3 Submitting Documentation Feedback to AvePoint...4 Required Permissions...5 Brower

More information

Vantrix Corporation VTA QuickStart

Vantrix Corporation VTA QuickStart Vantrix Corporation VTA QuickStart Version: Date: 56 This material and information ( Information ) constitutes a trade secret of Vantrix Corporation ( Vantrix ) and is strictly confidential. You agree

More information

One Identity Starling Two-Factor HTTP Module 2.1. Administration Guide

One Identity Starling Two-Factor HTTP Module 2.1. Administration Guide One Identity Starling Two-Factor HTTP Module 2.1 Administration Guide Copyright 2018 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software

More information

Operational Reporting Web Viewer Installation and Users Guide

Operational Reporting Web Viewer Installation and Users Guide Operational Reporting Web Viewer Installation and Users Guide Table of Contents Disclaimer... 3 What is Operational Reporting Web Viewer?... 4 Installation Requirements... 5 Installation Instructions...

More information

Enhanced Serial Peripheral Interface (espi) ECN

Enhanced Serial Peripheral Interface (espi) ECN Enhanced Serial Peripheral Interface (espi) ECN Engineering Change Notice TITLE Clarify OOB packet payload DATE 10 January 2014 AFFECTED DOCUMENT espi Base Specification Rev 0.75 DISCLOSURE RESTRICTIONS

More information

PLAINSCAPITAL BANK SAMSUNG PAY TERMS AND CONDITIONS - PERSONAL

PLAINSCAPITAL BANK SAMSUNG PAY TERMS AND CONDITIONS - PERSONAL PLAINSCAPITAL BANK SAMSUNG PAY TERMS AND CONDITIONS - PERSONAL Last Modified: 3/12/2018 These terms and conditions ( Terms and Conditions ) are a legal agreement between you and PlainsCapital Bank that

More information

SAF Security Audit Report

SAF Security Audit Report 2011-2014, Inc. or its affiliates. All rights reserved. This work is confidential and its use is strictly limited. Use is permitted only in accordance with the terms of the agreement under which it was

More information

TELIA OPERATOR SERVICE PLATFORM

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

More information

FortiAuthenticator - Two-Factor Authentication for Web Applications Solution Guide VERSION 1.0

FortiAuthenticator - Two-Factor Authentication for Web Applications Solution Guide VERSION 1.0 FortiAuthenticator - Two-Factor Authentication for Web Applications Solution Guide VERSION 1.0 FORTINET DOCUMENT LIBRARY http://docs.fortinet.com FORTINET VIDEO GUIDE http://video.fortinet.com FORTINET

More information

User Guide Mobile Point-of-Sale (mpos), Version 2.0

User Guide Mobile Point-of-Sale (mpos), Version 2.0 User Guide Mobile Point-of-Sale (mpos), Version 2.0 Contents Overview... 1 Features... 1 Getting Started... 2 Login... 3 First Time Login/Password Reset... 3 Setting Security Questions... 4 Password Expiring...

More information

CR6X CASH REGISTER QUICK START MANUAL

CR6X CASH REGISTER QUICK START MANUAL CR6X CASH REGISTER QUICK START MANUAL 1. KEY FUNCTIONS KEY Description Shift the key functions. Use to advance the receipt paper continuously until the key is released. [SHIFT] + [#2] to feed journal paper

More information

Connector for OpenText Content Server Setup and Reference Guide

Connector for OpenText Content Server Setup and Reference Guide Connector for OpenText Content Server Setup and Reference Guide Published: 2018-Oct-09 Contents 1 Content Server Connector Introduction 4 1.1 Products 4 1.2 Supported features 4 2 Content Server Setup

More information

DHIS 2 Android User Manual 2.22

DHIS 2 Android User Manual 2.22 DHIS 2 Android User Manual 2.22 2006-2016 DHIS2 Documentation Team Revision 1925 Version 2.22 2016-11-23 11:33:56 Warranty: THIS DOCUMENT IS PROVIDED BY THE AUTHORS ''AS IS'' AND ANY EXPRESS OR IMPLIED

More information

Certified Course Curriculum

Certified Course Curriculum Basic Mailings Training Guide CERTIFIED STUDENT CURRICULUM SAGE LEARNING SERVICES Certified Course Curriculum Software Version 9.0 NOTICE This document and the Sage Fundraising 50 software may be used

More information

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

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

More information

User Service. User Service. member. Network-level user with access to all aspects of the member's account (Advertisers, Publishers, Apps, etc.).

User Service. User Service. member. Network-level user with access to all aspects of the member's account (Advertisers, Publishers, Apps, etc.). User Service User Service "User" refers to people or groups able to log in to the AppNexus UI and API. Users are classified by a user_type, which determines what type of information they have access to.

More information

MERCHANT MANUAL. Direct Connect Merchant Services LLC Copyright 2016, All Rights Reserved Merchant Manual v 1.

MERCHANT MANUAL. Direct Connect Merchant Services LLC  Copyright 2016, All Rights Reserved Merchant Manual v 1. MERCHANT MANUAL Direct Connect Merchant Services LLC www.directconnectps.com Copyright 2016, All Rights Reserved Merchant Manual 2016.10.06 v 1.doc Table of Contents Overview... 5 The Gateway... 6 Logon

More information

Dell One Identity Quick Connect for Cloud Services 3.6. Administrator Guide

Dell One Identity Quick Connect for Cloud Services 3.6. Administrator Guide Dell One Identity Quick Connect for Cloud Services 3.6 2014 Dell Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this guide is furnished

More information

API WUZHEAR V /14/17. Register. Description: This api will allow users to create their accounts

API WUZHEAR V /14/17. Register. Description: This api will allow users to create their accounts API WUZHEAR V 1.0.2 02/14/17 Register Description: This api will allow users to create their accounts URL: http://www.wuzhear.com/api/v1/signup HTTP Method: POST HTTP Parameters: multipart/form-data last_name

More information

CAWS CONTINUOUS SECURITY VALIDATION PLATFORM API GUIDE VERSION 3.0

CAWS CONTINUOUS SECURITY VALIDATION PLATFORM API GUIDE VERSION 3.0 CAWS CONTINUOUS SECURITY VALIDATION PLATFORM API GUIDE VERSION 3.0 Version 3.0, 7/17/2017 NSS Labs, Inc. 206 Wild Basin Road Building A, Suite 200 Austin, TX 78746 US info@nsslabs.com www.nsslabs.com 2017

More information

Scribe Monitor App. Version 1.0

Scribe Monitor App. Version 1.0 Scribe Monitor App Version 1.0 Important Notice No part of this publication may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, photocopying, recording, or otherwise,

More information

QUICK START GUIDE. SMS 2500iX Appliance.

QUICK START GUIDE. SMS 2500iX Appliance. QUICK START GUIDE SMS 2500iX Appliance www.24onlinebilling.com QUICK START GUIDE SMS 25iX Appliance www.24onlinebilling.com 1 DEFAULTS The sales packet of 24online includes following list of contents.

More information

ewallet API integration guide version 5.1 8/31/2015

ewallet API integration guide version 5.1 8/31/2015 ewallet API integration guide version 5.1 8/31/2015 International Payout Systems, Inc. (IPS) ewallet API Integration Guide contains information proprietary to IPS, and is intended only to be used in conjunction

More information

WebEx Connector. Version 2.0. User Guide

WebEx Connector. Version 2.0. User Guide WebEx Connector Version 2.0 User Guide 2016 Ping Identity Corporation. All rights reserved. PingFederate WebEx Connector User Guide Version 2.0 May, 2016 Ping Identity Corporation 1001 17th Street, Suite

More information

Zendesk Connector. Version 2.0. User Guide

Zendesk Connector. Version 2.0. User Guide Zendesk Connector Version 2.0 User Guide 2015 Ping Identity Corporation. All rights reserved. PingFederate Zendesk Connector Quick Connection Guide Version 2.0 November, 2015 Ping Identity Corporation

More information

Bluepoint AIS File Export PS_BPAIS Application 13352

Bluepoint AIS File Export PS_BPAIS Application 13352 Bluepoint AIS File Export PS_BPAIS Application 13352 Bluepoint AIS File Export 2011-2014 Fiserv, Inc. or its affiliates. All rights reserved. This work is confidential and its use is strictly limited.

More information

Mobile On the Go (OTG) Server

Mobile On the Go (OTG) Server Mobile On the Go (OTG) Server Installation Guide Paramount Technologies, Inc. 1374 East West Maple Road Walled Lake, MI 48390-3765 Phone 248.960.0909 Fax 248.960.1919 www.paramountworkplace.com Copyright

More information

Authentication Service Api Help Guide

Authentication Service Api Help Guide Authentication Service Api Help Guide CionSystems Inc. 6640 185 th Ave NE Redmond, WA-98052, USA http://www.cionsystems.com Phone: +1.425.605.5325 Trademarks CionSystems, CionSystems Inc., the CionSystems

More information

Informatica Cloud Spring Microsoft SharePoint Connector Guide

Informatica Cloud Spring Microsoft SharePoint Connector Guide Informatica Cloud Spring 2017 Microsoft SharePoint Connector Guide Informatica Cloud Microsoft SharePoint Connector Guide Spring 2017 January 2018 Copyright Informatica LLC 2015, 2018 This software and

More information

WebinarJam API integration

WebinarJam API integration WebinarJam API integration IMPORTANT NOTES: Our API endpoint URL is https://webinarjam.genndi.com/api/ Please note that you re required to connect to our server from a SSL secure connection. Non SSL connections

More information

CRM Service Wrapper User Guide

CRM Service Wrapper User Guide Summary This document details the usage of the CRM Service Wrapper by xrm. The service wrapper allows you to communicate with a Microsoft Dynamics CRM application (called CRM for convenience in this document)

More information

PayTabs ios SDK Integration Guide

PayTabs ios SDK Integration Guide PayTabs ios SDK Integration Guide INTEGRATION GUIDE VERSION 2.0 Table of Contents 1 Overview...5 1.1 Test Merchant Account v/s Live Merchant Account...5 1.2 Target Audience...5 1.3 Assistance...5 1.4 Documentation

More information

Microsoft Dynamics GP. Working With Configurations Release 10.0

Microsoft Dynamics GP. Working With Configurations Release 10.0 Microsoft Dynamics GP Working With Configurations Release 10.0 Copyright Copyright 2008 Microsoft Corporation. All rights reserved. Complying with all applicable copyright laws is the responsibility of

More information

Intel Unite. Intel Unite Firewall Help Guide

Intel Unite. Intel Unite Firewall Help Guide Intel Unite Intel Unite Firewall Help Guide September 2015 Legal Disclaimers & Copyrights All information provided here is subject to change without notice. Contact your Intel representative to obtain

More information

Concur Expense QuickStart Guide. Concur Technologies Version 1.6

Concur Expense QuickStart Guide. Concur Technologies Version 1.6 Concur Expense QuickStart Guide Concur Technologies Version 1.6 November 30, 2016 2004 2016 Concur. All rights reserved. 1 Document Revision History Date Description Version Author 08/22/2014 Concur Expense

More information

ACCEPTABLE USE POLICIES FOR INFORMATION SERVICES COMPUTING RESOURCES

ACCEPTABLE USE POLICIES FOR INFORMATION SERVICES COMPUTING RESOURCES ACCEPTABLE USE POLICIES FOR INFORMATION SERVICES COMPUTING RESOURCES Information Security Team DePaul University 1 East Jackson Boulevard Chicago, Illinois 60604 US https:/infosec.depaul.edu/ 13th December

More information

Smart Plug User Guide

Smart Plug User Guide Smart Plug User Guide Version 1.2 Copyright 2016 About This Guide This document introduces to users an example of ESP IOT Platform applications, the Espressif Smart Plug. The document includes the following

More information

Quick Connection Guide

Quick Connection Guide WebEx Connector Version 1.0.1 Quick Connection Guide 2014 Ping Identity Corporation. All rights reserved. PingFederate WebEx Connector Quick Connection Guide Version 1.0.1 March, 2014 Ping Identity Corporation

More information

Sterling Virtual Terminal. User Guide

Sterling Virtual Terminal. User Guide Sterling Virtual Terminal User Guide Version 3.1.00 August 2015 Chapter 1: Getting started Table of Contents USER GUIDE... 1 CHAPTER 1: GETTING STARTED... 5 SYSTEM REQUIREMENTS... 5 STERLING VIRTUAL TERMINAL

More information

Event Push SOAP Contract

Event Push SOAP Contract Event Push SOAP Contract Message Delivery Schedule Sertifi will attempt to deliver messages multiple times if the web service listener is down or is returning errors. The delivery schedule for all the

More information

The Travel Tree Terms and Conditions

The Travel Tree Terms and Conditions The Travel Tree Terms and Conditions Please read the following Terms & Conditions carefully before using this site. Use of this site indicates acceptance of these Terms and Conditions. The following terms

More information

Mobilcomm 1211 West Sharon Road, Cincinnati, OH 45240

Mobilcomm 1211 West Sharon Road, Cincinnati, OH 45240 BRICS Princeton Road Hamilton, Ohio 45011 Matt Franke, Bill Vedra Attn: Email: Reference: Motorola XTS1500 Pricing Quote: Issued: Expires: Phone: Fax: 901-16854 10/3/2012 11/15/2012 513-785-1299 Item Product

More information

Cloud Access Manager How to Deploy Cloud Access Manager in a Virtual Private Cloud

Cloud Access Manager How to Deploy Cloud Access Manager in a Virtual Private Cloud Cloud Access Manager 8.1.3 How to Deploy Cloud Access Manager in Copyright 2017 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described

More information

Process a Refund. Bank Cards. MasterCard Visa American Express Discover

Process a Refund. Bank Cards. MasterCard Visa American Express Discover WEB TUTORIALS Process a Refund Bank Cards MasterCard Visa American Express Discover THE AVFUEL HUB To begin, select Refund from the Transactions menu in the top navigation bar or the Transactions button

More information

CPS MOG API Reference, Release

CPS MOG API Reference, Release CPS MOG API Reference, Release 13.1.0 First Published: 2017-08-18 Last Modified: 2017-08-18 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com

More information

SafeNet Authentication Service

SafeNet Authentication Service SafeNet Authentication Service Integration Guide All information herein is either public information or is the property of and owned solely by Gemalto NV. and/or its subsidiaries who shall have and keep

More information

Family Map Server Specification

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

More information

Batch Geocoder API. Developer's Guide. Version

Batch Geocoder API. Developer's Guide. Version Batch Geocoder API Developer's Guide Version 6.2.24.0 Batch Geocoder API Developer's Guide 2 Contents Contents Legal Notices...3 Document Information... 4 Chapter 1: Overview... 5 What is the Batch Geocoder

More information

Engagement Attributes Overview Document Version: 1.6 July 2017

Engagement Attributes Overview Document Version: 1.6 July 2017 Engagement Attributes Overview Document Version: 1.6 July 2017 Contents Introduction... 3 Important notes... 3 Uses of Engagement Attributes in LiveEngage... 3 Types of Engagement Attributes... 4 ecommerce

More information

Product Inventory Management API REST Specification

Product Inventory Management API REST Specification Frameworx Specification Product Inventory Management API REST Specification TMF637 Release 16.5.1 April 2017 Latest Update: Frameworx Release 16.5 TM Forum Approved Version 2.1.1 IPR Mode: RAND TM Forum

More information

Informatica Cloud Spring Data Integration Hub Connector Guide

Informatica Cloud Spring Data Integration Hub Connector Guide Informatica Cloud Spring 2017 Data Integration Hub Connector Guide Informatica Cloud Data Integration Hub Connector Guide Spring 2017 December 2017 Copyright Informatica LLC 1993, 2017 This software and

More information

Forte Mobile Application

Forte Mobile Application Forte Mobile Application User Guide v3.1.2 Updated 5.25.2017 Revision History Forte Mobile Application: User Guide v3.1.2 Version Date Changes 3.1.1 4/6/2016 New Format. Added Merchant Settings Admin Password.

More information

TERMS OF USE Effective Date: January 1, 2015 To review material modifications and their effective dates scroll to the bottom of the page. 1.Parties.

TERMS OF USE Effective Date: January 1, 2015 To review material modifications and their effective dates scroll to the bottom of the page. 1.Parties. TERMS OF USE Effective Date: January 1, 2015 To review material modifications and their effective dates scroll to the bottom of the page. 1.Parties. The parties to these Terms of Use are you, and the owner

More information

One Identity Manager 8.0. IT Shop Administration Guide

One Identity Manager 8.0. IT Shop Administration Guide One Identity Manager 8.0 IT Shop Administration Guide Copyright 2017 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in

More information

Carbonite Server Backup Portal 8.6. Administration Guide

Carbonite Server Backup Portal 8.6. Administration Guide Carbonite Server Backup Portal 8.6 Administration Guide 2018 Carbonite, Inc. All rights reserved. Carbonite makes no representations or warranties with respect to the contents hereof and specifically disclaims

More information

Users Guide for InstantAccept POS

Users Guide for InstantAccept POS Users Guide for InstantAccept POS How to make a sale: Go in to Make a Sale on your QuickBooks POS. Select your item. Choose what type of payment you are taking. If you are using a card reader, click swipe

More information

REST Admin API. Note: Version 9.X or higher is required for the support of REST API. Version /17

REST Admin API. Note: Version 9.X or higher is required for the support of REST API. Version /17 REST Admin API Setup Each application that will communicate to the SecurAccess server via the REST API interface will require authorisation as a trusted source, located under Config/REST API from the SecurEnvoy

More information

NetApp SolidFire Element OS. Setup Guide. Version March _A0

NetApp SolidFire Element OS. Setup Guide. Version March _A0 NetApp SolidFire Element OS Setup Guide Version 10.2 March 2018 215-12911_A0 doccomments@netapp.com Table of Contents 3 Contents SolidFire system overview... 4 Configuring a storage node... 5 Configuring

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

QUICK REFERENCE GUIDE ipad. Chase Mobile Checkout

QUICK REFERENCE GUIDE ipad. Chase Mobile Checkout QUICK REFERENCE GUIDE ipad Chase Mobile Checkout FOR U.S. CLIENTS OCTOBER 2018 QUICK REFERENCE GUIDE ipad CHASE MOBILE CHECKOUT U.S. 2 CHASE MAKES NO WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED,

More information

Upgrading BankLink Books

Upgrading BankLink Books Upgrading BankLink Books Contents Upgrading BankLink Books... 4 Upgrading BankLink Books using the automatic upgrade 4 Upgrading BankLink Books when asked to upgrade 5 Upgrading BankLink Books Page 2 of

More information