YIFTEE REWARDS DEVELOPER GUIDE

Size: px
Start display at page:

Download "YIFTEE REWARDS DEVELOPER GUIDE"

Transcription

1 YIFTEE REWARDS DEVELOPER GUIDE INTRODUCTION A reward is a pre- defined amount redeemable at a merchant(s). You can create any number of rewards from the Yiftee Enterprise Portal for your enterprise. A gift is an instances of a reward sent to a specific recipient via or SMS or Twitter or Facebook. Gifts can be created and delivered using the Yiftee Rewards API. You also have the option of just creating the gifts using the API but deliver the gifts yourself. There needs to be enough balance in the account when a gift is created. 1 P age Y iftee, Inc. v0.2

2 CREATE REWARDS 1. Log in to your Yiftee Enterprise Portal and click on Rewards in the menu on the left. 2 P age Y iftee, Inc. v0.2

3 2. Click on Add A Reward (the first time) or Create Reward (near the top left corner) 3 P age Y iftee, Inc. v0.2

4 3. Fill in the details. Click on Add A Gift to select merchant and amount. 4 P age Y iftee, Inc. v0.2

5 4. Review the reward details including the expiration period and the number of reminders to be sent to the gift recipient. Decide if you would like the gift to be exchangeable and donatable. 5 P age Y iftee, Inc. v0.2

6 5. Click on Create Reward to create the reward. 6 P age Y iftee, Inc. v0.2

7 6. If you click on the API JSON button you will see the JSON that should be posted to the Create Gift API (more details later). You will need the api_token, the api_secret and the reward_id from this screen. 7 P age Y iftee, Inc. v0.2

8 YIFTEE REWARDS API In this document, "client" refers to the party initiating the API calls. NOTES FOR TEST ENVIRONMENTS For developer testing purposes, please get the test server host name from Yiftee Developer Support and use it wherever you see <server> or in the following sections. For the test servers, DO NOT USE A REAL CREDIT CARD to deposit funds into the account. Use the following test credit card: card number CVC 111 expiration date 3/2018 street address zip Middlefield Road s will be sent both to gift senders and gift receipients. Therefore, when providing an address, please provide addresses where you can receive these s. CREATE GIFT Up to 50 gifts can be sent in each API call. If the number of gifts exceeds 50, the API call will not be processed. All gifts in a batch must be from the same sponsor. PROTOCOL HTTP Method URL POST <server>/v2/gift/give REQUEST PARAMETERS The POST parameter is a JSON string with the following name- value pairs: api_token required client api token (from the API JSON screen) api_secret required client api secret (from the API JSON screen) sponsor_api_token required sponsor api token (from the API JSON screen) sponsor_api_secret required sponsor api secret (from the API JSON screen) no_deliver required true if CLIENT (not Yiftee) will deliver gift. false if YIFTEE should deliver the gift using /sms in the per- gift info. gifts required array of gift_info (see below) 8 P age Y iftee, Inc. v0.2

9 gift_info reward_id required The reward_id generated by Yiftee to uniquely identify a reward (from the API JSON screen) audit_number required Client- supplied number to track this gift. You should include a unique audit number with each gift. Yiftee server will use this to reject duplicates so that if the same request is posted twice the second one will be ignored. recipient_name name of recipient if known recipient_phone optional phone number of gift recipient if known recipient_ optional address of gift recipient if known recipient_fb_id optional Facebook id of gift recipient if known recipient_twitter optional Twitter id of gift recipient if known RESPONSE The response is a JSON string with the following parameters: total Total cost of the gifts being purchased including Yiftee fees (in USD) account_balance Amount remaining in the sponsor account after purchasing all gifts in the batch invoice_id Yiftee invoice number to refer to this purchase transactions Array of transaction_detail for each gift. The recipient_gift_link can be forwarded to the gift recipient who can follow the hyperlink to retrieve the gift. transaction_detail audit_number recipient_details message price_paid sender_name message_print gift The audit_number sent by the client in the request JSON for each gift. This number can be used to retrieve the status of a gift in the Gift Status API. A hash with the following name- value pairs (depending on what is provided in the request JSON): name phone twitter facebook The message sent to the recipient to announce the gift The amount charged to the client for the gift (includes the Yiftee fees) The sender name as configured in the reward null A gift_info structure gift_info merchant_id merchant_name redeemable_at_copy amount status The Yiftee ID of the merchant where the gift can be redeemed The name of the merchant where the gift can be redeemed A text description of how/where to redeemed the gift The amount that can be redeemed by the recipient (= price_paid minus Yiftee fees) DELIVERED, VIEWED 9 P age Y iftee, Inc. v0.2

10 expiration_date The date when the gift will expire in %A %b %d format (e.g. "Tuesday Dec 06") expiration_date_utc The date when the gift will expire in UTC (e.g. " ") recipient_gift_link A URL where the recipient can retrieve the gift short_code A short code which is the unique part of the recipient_gift_link. This short_code can be used to query information about the gift in the future (see the Gift Info API). sender_gift_link A URL where the recipient can see the sender image_url A URL to an image of the gift EXAMPLES The following examples use the curl command to illustrate the effects of making API calls. You can launch the API calls from the programming environment of your choice. EXAMPLE 1 In this example two gifts are sent: one to Fred and one to Sam. The audit_number is something the client generates to uniquely identify each gift for tracking and debugging purposes. We want Yiftee to send the gifts so we set no_deliver to false (the JSON response is the same when no_deliver is true). Note that the curl command in the following example is a single command line. #!/bin/bash api_token=83595d6ce4896fea0a097f785e28f4d3224 api_secret=16685d1a7c48ecd0d21afbaa sponsor_api_token=83595d6ce4896fea0a097f785e28f4d3224 sponsor_api_secret=16685d1a7c48ecd0d21afbaa cd curl -X POST -H "Content-Type: application/json" -d '"api_token":"'$api_token'","api_secret":"'$api_secret'","sponsor_api_token":"'$spons or_api_token'","sponsor_api_secret":"'$sponsor_api_secret'","no_deliver":false,"gifts" :["reward_id":11,"audit_number":"1001","recipient_name":"sam","recipient_ ":"sam@ cohowinery.com""reward_id":1,"audit_number":"1002","recipient_name":"fred","recipie nt_twitter":"@fred"]' Response: "total": 44.0, "account_balance": 208.0, "invoice_id": 39430, "transactions": [ "audit_number": "1001", "recipient_details": "name": "Sam", " ": "sam@cohowinery.com", "phone": "", "twitter": "" "message": "Welcome to the Preferred Circle!", "price_paid": "22.0", "sender_name": "Steve Chan", "message_print": null, "gift": "merchant_id": , 10 P age Y iftee, Inc. v0.2

11 ] "merchant_name": "Fav Cafe", "redeemable_at_copy": "565 Middlefield Road, Menlo Park, California 94025", "amount": "20.00", "status": "DELIVERED", "expiration_date": "Tuesday Dec 06", "expiration_date_utc": " ", "recipient_gift_link": " "short_code": "8Kg903T", "sender_gift_link": " "image_url": " "bounce_sms": null, "bounce_ ": null, "bounce_facebook": null, "bounce_twitter": null "audit_number": "1002", "recipient_details": "name": "Fred", " ": "", "phone": "", "twitter": "message": "Welcome to the Preferred Circle!", "price_paid": "22.0", "sender_name": "Steve Chan", "message_print": null, "gift": "merchant_id": , "merchant_name": "Fav Cafe", "redeemable_at_copy": "565 Middlefield Road, Menlo Park, California 94025", "amount": "20.00", "status": "DELIVERED", "expiration_date": "Tuesday Dec 06", "expiration_date_utc": " ", "recipient_gift_link": " "short_code": "HMytFfV", "sender_gift_link": " "image_url": " "bounce_sms": null, "bounce_ ": null, "bounce_facebook": null, "bounce_twitter": null EXAMPLE 2 If you just want to send a single gift you can omit the 'gifts' array in the JSON. The server will treat a single entry just like an array of one element. curl -X POST -H "Content-Type: application/json" -d '"api_token":"'$api_token'","api_secret":"'$api_secret'","sponsor_api_token":"'$spons or_api_token'","sponsor_api_secret":"'$sponsor_api_secret'","no_deliver":false,"reward _id":"11","audit_number":"1005","recipient_name":"sam","recipient_ ":"sam@cohowine ry.com"' 11 P age Y iftee, Inc. v0.2

12 Response "total": 22.0, "account_balance": 142.0, "invoice_id": 39432, "transactions": [ "audit_number": "1005", "recipient_details": "name": "Sam", " ": "sam@cohowinery.com", "phone": "", "twitter": "" "message": "Welcome to the Preferred Circle!", "price_paid": "22.0", "sender_name": "Steve Chan", "message_print": null, "gift": "merchant_id": , "merchant_name": "Fav Cafe", "redeemable_at_copy": "565 Middlefield Road, Menlo Park, California 94025", "amount": "20.00", "status": "DELIVERED", "expiration_date": "Tuesday Dec 06", "expiration_date_utc": " ", "recipient_gift_link": " "short_code": "d2lwcqy", "sender_gift_link": " "image_url": " "bounce_sms": null, "bounce_ ": null, "bounce_facebook": null, "bounce_twitter": null ] NOTES The audit_number, if provided, must be unique among all gifts sent. If not provided, the Yiftee server will generate a unique audit_number for you, but it will be a Yiftee internal number, not your own. If you try to create a gift with a duplicate audit_number, it will be ignored and no gift will be sent. If you provide a Twitter hashtag in recipient_twitter, the response will contain a property recipient_gift_link_public. This link will take the recipient to a public gift page that forces the user to log in with their Twitter username before redeeming the gift. In order to create and send gifts, it is necessary to fund the sender's account. This may be done by logging in to the sender's account and depositing funds in the normal way. GIFT STATUS Pass in an audit_number to retrieve the current status of a gift. 12 P age Y iftee, Inc. v0.2

13 PROTOCOL HTTP method URL GET <server>/v2/gift/status REQUEST PARAMETERS The following parameters are passed in the URL. api_token required client api token api_secret required client api secret audit_number required An audit_number previously used to create a gift RESPONSE receipt A transaction_detail structure (see the Create Gift API response section) EXAMPLE api_token=1d65d4dfbd7933c2e746f805877cf api_secret=a4c01cb4d9646fda206495e05f8cfc4c24189 curl -i -H "Accept: application/json" -H "Content-Type: application/json" -X GET " t_number=3001" Response "receipt": "audit_number": "3021", "recipient_details": "name": "Sam", " ": " sam@cohowinery.com ", "phone": "", "twitter": "" "message": "Welcome to the Preferred Circle!", "price_paid": "22.0", "sender_name": "Steve Chan", "message_print": null, "gift": "merchant_id": , "merchant_name": "Fav Cafe", "redeemable_at_copy": "565 Middlefield Road, Menlo Park, California 94025", "amount": "20.00", "status": "DELIVERED", "expiration_date": "Tuesday Dec 06", "expiration_date_utc": " ", "recipient_gift_link": " "short_code": "d2lwcqy", "sender_gift_link": " "image_url": " "bounce_sms": null, "bounce_ ": null, "bounce_facebook": null, 13 P age Y iftee, Inc. v0.2

14 "bounce_twitter": null LIST REWARDS Retrieve a list of all rewards defined. PROTOCOL HTTP method URL GET <server>/v2/gift/enumerate_rewards REQUEST PARAMETERS The following parameters are passed in the URL. api_token required client api token api_secret required client api secret RESPONSE The response is a JSON string with the following parameters reward_list s Array of reward_info reward_info id name microgift_id image_url merchant sender_name message exchangeable donatable s reward_id (generated by Yiftee for each reward) reward name Yiftee internal ID A URL of the gift image merchant name reward sender name reward message to be send to the gift recipient if the gift can be exchanged for gifts at other merchants if the gift can be donated EXAMPLE api_token=1d65d4dfbd7933c2e746f805877cf api_secret=a4c01cb4d9646fda206495e05f8cfc4c24189 curl -i -H "Accept: application/json" -H "Content-Type: application/json" -X GET " secret" 14 P age Y iftee, Inc. v0.2

15 Response "rewards": [ "id": 11, "name": "Preferred Circle Welcom Gift", "microgift_id": 42472, "image_url": " "price": "20.0", "merchant": "Fav Cafe", "sender_name": "Steve Chan", "message": "Welcome to the Preferred Circle!", "exchangeable": false, "donatable": false, "expiration_days": 365, "gift_reminders": 12 "id": 12, "name": "Golden Circle Welcom Gift", "microgift_id": 42473, "image_url": " "price": "100.0", "merchant": "Fav Hotel", "sender_name": "Steve Chan", "message": "Welcome to the Golden Circle!", "exchangeable": false, "donatable": false, "expiration_days": 365, "gift_reminders": 12 ] GIFT INFO Retrieve latest information of a gift including the balance using the short code returned in the Create Gift API. PROTOCOL HTTP method URL GET <server>/v2/gifts/<short_code> REQUEST PARAMETERS The following parameters are passed in the URL. Note that the gift short code is part of the URL (see example). api_token required client api token api_secret required client api secret RESPONSE The response is a JSON string with the following parameters 15 P age Y iftee, Inc. v0.2

16 meta response s code:200 if successful Contains the gift element with details of the gift. gift.balance contains the current balance remaining on the gift. See example for details. EXAMPLE api_token=1d65d4dfbd7933c2e746f805877cf api_secret=a4c01cb4d9646fda206495e05f8cfc4c24189 short_code=d2lwcqy curl -i -H "Accept: application/json" -H "Content-Type: application/json" -X GET $server"/v2/gifts/$short_code?api_token=$api_token&api_secret=$api_secret" > $prefix.log 2> $prefix.err Response "meta": "code": 200 "response": "gift": "id": 47097, "message": "message": " Welcome to the Preferred Circle!", "timestamp": " T19:07:13Z", "recipient_ ": "sam@cohowinery.com", "giftee_sms": "", "share_on_facebook": false, "recipient_twitter": "" "microgift": "id": 42472, "image_url": " "price": "20.00", "merchant": "id": , "name": "Fav Cafe", "address": "565 Middlefield Road, Menlo Park, California 94025", "address1": "565 Middlefield Road", "address2": "", "city": "Menlo Park", "state": "California", "zipcode": "94025", "phone": "(650) " "total_price": "22.00" "cannot_donate": "true", "cannot_exchange": "true", "balance": "20.00", "expiration_date": "Wednesday Dec 07, 2016", "created_at": "December 8, :07 PM", "giftee_name": "Sam", "short_code": "d2lwcqy ", "bounce_ ": null, "bounce_sms": null, "bounce_facebook": null, "bounce_twitter": null 16 P age Y iftee, Inc. v0.2

17 17 P age Y iftee, Inc. v0.2

API Documentation. Release Version 1 Beta

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

More information

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

Sendroid Ultimate. User Manual

Sendroid Ultimate. User Manual Sendroid Ultimate User Manual System Overview Sendroid Ultimate is an ultimate bulk SMS portal software and SMS reseller system designed for bulk SMS service providers, SMS resellers and bulk SMS marketers.

More information

Go to click on the Online Giving icon at the bottom of the page, A new window will open up that looks like this:

Go to   click on the Online Giving icon at the bottom of the page, A new window will open up that looks like this: Go to www.newlifeodessa.org, click on the Online Giving icon at the bottom of the page, A new window will open up that looks like this: 1. At the bottom of the area, under Log In, click Need an Account

More information

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

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

More information

Gift Card Instructions Daxko Spectrum

Gift Card Instructions Daxko Spectrum Gift Cards Gift card are good to use for a variety of reason: 1. You can track the declining balance on them. 2. You can recharge them; treat it as a cash card. The cards can be attached to a recipient.

More information

To login to the Virtual Terminal, click on the link in your Welcome to PPI , enter your user ID and password and click OK.

To login to the Virtual Terminal, click on the link in your Welcome to PPI  , enter your user ID and password and click OK. Welcome to the PPI PayMover Virtual Terminal Training. The Virtual Terminal allows you to process real-time credit card transactions without a standalone hardware terminal. You are able to process credit

More information

Requests that are forwarded via redirects by a customer's web browser are authenticated via browser API authentication.

Requests that are forwarded via redirects by a customer's web browser are authenticated via browser API authentication. Poplatek Server API Version: 2016-06-22.2 Quick links Browser API Pay REST API Get Transaction Status Cancel Refund Settlement report Changes 2016-06-22: Document sandbox URL endpoints. Small miscellaneous

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

Eventbrite Handbook for ZBHA Faculty

Eventbrite Handbook for ZBHA Faculty Eventbrite Handbook for ZBHA Faculty Updated 1/11 Table of Contents Getting Started Log-In and Initial Set-Up What ZBHA needs to know to create your online class registration page Managing Your Class (aka

More information

New Dashboard - Help Screens

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

More information

qbeats App User Guide, Version 10

qbeats App User Guide, Version 10 qbeats App User Guide, Version 10 Disclosure Introduction Installing the app Overview of the app Create account Sign in App settings Search box Analysis & live tabs Create custom channels Saving and accessing

More information

Release Notes for Version

Release Notes for Version Release Notes for Version 7.0.6774 App Type Comments Settings/Required Changes Activity Log Addition to As a user, I would like 'Activity Log' to record when a timeclock entry is removed with 'Manage Timeclock

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

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

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

More information

Basware Portal for Receiving Basware Commerce Network

Basware Portal for Receiving Basware Commerce Network Basware Portal for Receiving Basware Commerce Network Copyright 1999-2016 Basware Corporation. All rights reserved. Disclaimer This product or document is copyrighted according to the applicable copyright

More information

ShipRite s Account Receivable Instructions

ShipRite s Account Receivable Instructions ShipRite s Account Receivable Instructions Setting up a new account Click on the POS button Enter the existing customer s PHONE number here. If they are in the database, their information will appear at

More information

Getting Started with Online Payments

Getting Started with Online Payments Getting Started with Online Payments Getting Started... 2 Steps for the Online Payment Process... 2 Step 1 Customer Visits Web Site... 2 Step 2 Redirected to Payment Center... 2 Step 3 Status Determined...

More information

API Spec Sheet For Version 2.5

API Spec Sheet For Version 2.5 INTRODUCTION The Wholesale SMS API is ideally suited for sending individual sms messages and/or automated responses through our premium routes. To send bulk messages through the API you can set your server

More information

There are only a few controls you need to learn about in order to use Black Cat Timer:

There are only a few controls you need to learn about in order to use Black Cat Timer: Black Cat Timer 1.0.0b1 October 6, 2001 Black Cat Timer is a timing and scheduling program for the Macintosh. The registration fee is only $9.99. You re free to evaluate Black Cat Timer for 30 days, after

More information

P2P Instructions. 4. Select Person to Person

P2P Instructions. 4. Select Person to Person P2P Instructions 1. To utilize P2P, you need to first be enrolled in digital banking. Sign up at www.ucbankmn.com or enroll directly through our mobile app. (To learn more about digital banking see https://www.ucbankmn.com/eservices/online-banking.)

More information

Using Stripe to Accept Payments on Your Website

Using Stripe to Accept Payments on Your Website Using Stripe to Accept Payments on Your Website Business Model Copyright 2016 Rootworks Overview This document is designed to provide the steps of setting up a Stripe account for your firm, and getting

More information

OKPAY guides INTEGRATION OVERVIEW

OKPAY guides INTEGRATION OVERVIEW Название раздела OKPAY guides www.okpay.com INTEGRATION OVERVIEW 2012 Contents INTEGRATION OVERVIEW GUIDE Contents 1. Payment System Integration 2. OKPAY Integration Types 2.1. Basic Payment Links and

More information

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

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

More information

Privacy and Security in Online Social Networks Department of Computer Science and Engineering Indian Institute of Technology, Madras

Privacy and Security in Online Social Networks Department of Computer Science and Engineering Indian Institute of Technology, Madras Privacy and Security in Online Social Networks Department of Computer Science and Engineering Indian Institute of Technology, Madras Lecture 08 Tutorial 2, Part 2, Facebook API (Refer Slide Time: 00:12)

More information

Points are not transferable. Aon employees are not eligible to receive Points.

Points are not transferable. Aon employees are not eligible to receive Points. Q: What are Points? A: Talk to Aon uses a Points system to reward members for completing certain surveys. When you receive emails that invite you to participate in surveys, you ll be told whether the survey

More information

Club Automation: Online Portal

Club Automation: Online Portal Cedardale Health & Fitness 931 Boston Road Haverhill, MA Cedardale Andover 307 Lowell Street Andover, MA Club Automation: Online Portal (661) 257-0044 Welcome to your new Cedardale Health & Fitness online

More information

First Data Global Gateway SM Virtual Terminal User Manual

First Data Global Gateway SM Virtual Terminal User Manual First Data Global Gateway SM Virtual Terminal User Manual Version 1.0 2015 First Data Corporation. All Rights Reserved. All trademarks, service marks, and trade names referenced in this material are the

More information

Overview. Guide for the Authorized User

Overview. Guide for the Authorized User Overview This guide demonstrates how to view your student s account balance and make payments for your student as an Authorized User. Note: Your student must first login to MySJSU and set up an authorized

More information

Enterprise Payment Solutions. Rent Collector Portal. Rent Collector Portal Handbook

Enterprise Payment Solutions. Rent Collector Portal. Rent Collector Portal Handbook Enterprise Payment Solutions Rent Collector Portal Contents Contents... 2 I. Rent Collector Portal: Overview... 1 II. System Requirements... 1 III. Payments... 1 A.Making a One-Time (Pay Now) Donation/Payment

More information

ARTIO SMS Services HTTP API Documentation

ARTIO SMS Services HTTP API Documentation ARTIO SMS Services HTTP API Documentation David Jozefov Michal Unzeitig Copyright 2013 - ARTIO International Co. ARTIO SMS Services HTTP API Documentation ARTIO Publication date: 4.9.2013 Version: 1.0.1

More information

QuickGifts Merchant Gift Card Program User Guide Updated: March 12, 2013

QuickGifts Merchant Gift Card Program User Guide Updated: March 12, 2013 QuickGifts Merchant Gift Card Program User Guide Updated: March 12, 2013 The purpose of this user guide is to provide our Merchant Partners with general information and instructions related to QuickGifts

More information

PayPal Home Support Search PayPal Developer Central Search. Developer Home Partner Solutions How to Library Training Community

PayPal Home Support Search PayPal Developer Central Search. Developer Home Partner Solutions How to Library Training Community 1 of 16 1/5/2011 3:56 PM PayPal Home Support Search PayPal Developer Central Search Developer Home Partner Solutions How to Library Training Community Integration Overview HTML Overview Website Payments

More information

KNET API Integration Guide

KNET API Integration Guide KNET API Integration Guide API INTEGRATION GUIDE VERSION 1.0 1 Table of Contents 1. Overview...5 1.1 Scope...5 1.2 Target Audience...5 1.3 Assistance...5 1.4 Documentation Feedback...5 2 KNET Transaction

More information

C U B I T S. API DOCUMENTATION Version 1.8

C U B I T S. API DOCUMENTATION Version 1.8 C U B I T S API DOCUMENTATION Version 1.8 Table of Contents Table of Contents Introduction Request and Response Format Authentication Callbacks User language selection Test Invoices Channels Quote Channels

More information

Guardian Account Setup and epayment

Guardian Account Setup and epayment Walkthrough: Scenario: Student wants to add her father to her Guardian list to allow him to pay her tuition and fees. Path: Sign into Buckeye Link My Buckeye Link STUDENT S STEPS: 1. Navigate to the My

More information

Payment Center API WEBFORM/GATEWAY MODE v2.6.2

Payment Center API WEBFORM/GATEWAY MODE v2.6.2 Payment Center API WEBFORM/GATEWAY MODE v2.6.2 Content Introduction 3 WebPay (webform) 4 WebBlock (webform) 6 Pay (gateway) 4 Block (gateway) 6 Token (gateway) 6 Charge (webform/gateway) 7 Cancel (webform/gateway)

More information

Blackbaud Merchant Services Web Portal Guide

Blackbaud Merchant Services Web Portal Guide Blackbaud Merchant Services Web Portal Guide 10/09/2017 Blackbaud Merchant Services 4.0 Blackbaud Merchant Services Web Portal Guide US 2016 Blackbaud, Inc. This publication, or any part thereof, may not

More information

Merchant e-solutions Payment Acceptance User Guide for Magento version 2.x ( M2 )

Merchant e-solutions Payment Acceptance User Guide for Magento version 2.x ( M2 ) Merchant e-solutions Payment Acceptance User Guide for Magento version 2.x ( M2 ) Step-by-step guidance for setup and use of the Payment Acceptance extension for Magento 1 Table of Contents Key Contacts...

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

This document contains the steps which will help you to submit your business to listings. The listing includes both business and contact information.

This document contains the steps which will help you to submit your business to listings. The listing includes both business and contact information. This document contains the steps which will help you to submit your business to listings. The listing includes both business and contact information. You can also include details, such as search keywords,

More information

Title Page. Business Center. User Guide. January CyberSource Corporation HQ P.O. Box 8999 San Francisco, CA Phone:

Title Page. Business Center. User Guide. January CyberSource Corporation HQ P.O. Box 8999 San Francisco, CA Phone: Title Page Business Center User Guide January 2018 CyberSource Corporation HQ P.O. Box 8999 San Francisco, CA 94128-8999 Phone: 800-530-9095 CyberSource Contact Information For general information about

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

CyberSource Global Payment Management for Magento 2

CyberSource Global Payment Management for Magento 2 CyberSource Global Payment Management for Magento 2 User s Guide Version 2.0.3 January 2018 January 2018 CyberSource Global Payment Management for Magento 2.x 1 Contents Recent Changes... 5 1. Introduction:...

More information

SEGPAY WooCommerce Plugin SETUP

SEGPAY WooCommerce Plugin SETUP SEGPAY WooCommerce Plugin SETUP Client Documentation Version 1.1 May 11, 2017 Table of Contents Version Tracking... 3 Summary... 4 Pre-Installation Checklist... 4 Plugin Installation... 5 Testing... 9

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

Welcome to BluePay Mobile Payments

Welcome to BluePay Mobile Payments Welcome to BluePay Mobile Payments Activation Instructions Telephone Support 866-680-8324 Email Support customerservice@bluepay.com Activation Instructions When your account was approved you should have

More information

AngelPoints Release Notes 2015

AngelPoints Release Notes 2015 AngelPoints Release Notes 2015 The following document includes all of the release notes for the 2015 calendar year. Contents 2015.1... 2 Manage Events... 2 Rewards... 3 Recurring Credit Card Donations...

More information

Easypay COP interface manual

Easypay COP interface manual Easypay COP interface 1/15 Version 3.4 Status published Replaces version 3.3 Issue date 09/14/2015 Valid from 09/14/2015 Valid until - Author Alexander Schamne 2/15 Change list Updated on Updated by Version

More information

BulkSMS Marketo Gateway

BulkSMS Marketo Gateway BulkSMS Marketo Gateway Integration Guide Page 1 Contents Introduction... 4 About the BulkSMS Gateway for Marketo... 4 Advanced Group Messaging Key Features... 4 Use any or all of our other products and

More information

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

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

More information

SedonaOffice Users Conference. San Francisco, CA January 21 24, Sedona . Presented by: Jim Mayes Carolyn Johnson

SedonaOffice Users Conference. San Francisco, CA January 21 24, Sedona . Presented by: Jim Mayes Carolyn Johnson SedonaOffice Users Conference San Francisco, CA January 21 24, 2018 SedonaEmail Presented by: Jim Mayes Carolyn Johnson This Page Intentionally Left Blank Page 2 of 50 Table of Contents Overview... 4 What

More information

How to register and verify yourself on Advcash

How to register and verify yourself on Advcash How to register and verify yourself on Advcash 1. Go to www.advcash.com 2. Click on LOG IN in the upper right corner 3. Press Register 4. Fill out your correct personal details 5. You have now created

More information

CRM Set-up & Order Summary

CRM Set-up & Order Summary Dealer Name: CRM Set-up & Order Summary New Dealer Set-up Change to Existing Dealer Supplies Order Dealer Contact: RpmOne Rep: Date to Invoice: SET-UP ITEMS Quantity Price Total One Time Set-up Cost Terminal

More information

Merchant e-solutions Payment Acceptance User Guide for Magento (M1)

Merchant e-solutions Payment Acceptance User Guide for Magento (M1) Merchant e-solutions Payment Acceptance User Guide for Magento (M1) Step-by-step guidance for setup and use of the Payment Acceptance extension for Magento 1 Table of Contents Key Contacts... 3 Extension

More information

ICBC (London) Plc Internet Banking FAQ s

ICBC (London) Plc Internet Banking FAQ s ICBC (London) Plc Internet Banking FAQ s Internet banking tips * Never share your account login or password with anyone; * ICBC will never ask you to disclose to us your internet banking password; * Do

More information

User s Guide. (Virtual Terminal Edition)

User s Guide. (Virtual Terminal Edition) User s Guide (Virtual Terminal Edition) Table of Contents Home Page... 4 Receivables Summary... 4 Past 30 Day Payment Summary... 4 Last 10 Customer Transactions... 4 View Payment Information... 4 Customers

More information

SortMyBooks API (Application programming

SortMyBooks API (Application programming SortMyBooks API (Application programming interface) Welcome to Sort My Books. This documentation will help you to get started with SortMyBooks API. General Considerations SortMyBooks works with objects

More information

2013 RunSignUp, LLC 407 Chester Avenue Moorestown, NJ (888)

2013 RunSignUp, LLC 407 Chester Avenue Moorestown, NJ (888) Within this document you will find detailed instructions on how to use www.runsignup.com; a website that hosts online race registrations. This manual covers topics for race directors, runners, club directors,

More information

User Manual for U-Bank New York

User Manual for U-Bank New York User Manual for U-Bank New York China Merchants Bank New York Branch December 2016 Content 1. Overview... 4 1.1 Who Should Read This Guide?... 4 1.2 What Should You Know About U-Bank NY?... 4 1.2.1 Maker-Checker

More information

How to Buy A Bus Pass

How to Buy A Bus Pass How to Buy A Bus Pass How to Buy a RideTRAFFIX Bus Pass 2018 Step One: Go to the website Go to http://ridetraffix.com/buyapass.aspx Step Two: Enter Your Address Correctly Type in your Street number and

More information

Fanfare Gift Card Application

Fanfare Gift Card Application Quick Reference Guide Fanfare Gift Card Application Verifone Evolution Series 2017 Elavon Inc. Elavon is a registered trademark in the United States and other countries. This document is prepared by Elavon

More information

Christmas Bird Count (CBC) Data Entry Manual: Instructions on how to complete items for the CBC

Christmas Bird Count (CBC) Data Entry Manual: Instructions on how to complete items for the CBC Christmas Bird Count (CBC) Data Entry Manual: Instructions on how to complete items for the CBC Post-a-Date page Edit Compilers Names View participants list Bird Checklist Start/End Times, Effort, Weather

More information

Vantiv ecommerce for Magento 2

Vantiv ecommerce for Magento 2 Vantiv ecommerce for Magento 2 User Guide Version 1.0.0 June 2017 Table of Content 1. Onboarding...3 2. Installation...3 3. Configuration...5 4. Nuances for each MOP...22 5. Checkout...23 6. Stored Payment

More information

USER HELP. Copyright Information Copyright 2016 Global Payments Inc. All rights reserved worldwide.

USER HELP. Copyright Information Copyright 2016 Global Payments Inc. All rights reserved worldwide. MERCHANT SALES: 800-637-8268 New Merchant Accounts PARTNER PROGRAMS: 800-637-8268 New and existing partnerships CUSTOMER CARE: 800-338-6614 Existing merchant account support Statements and deposits Changes

More information

Release Notes for Version

Release Notes for Version Release Notes for Version 7.0.3139 App Feature Type Comments Settings/Required Changes SPOT Activity Log Addition to As a SPOT user, I would like an activity log entry to specify if I added or removed

More information

Welcome to Your. Online Banking Experience

Welcome to Your. Online Banking Experience Welcome to Your Online Banking Experience Take your Orlando Federal accounts with you where ever you go - Access your account information with online banking and mobile banking. Check balances, pay bills,

More information

Authentication CS 4720 Mobile Application Development

Authentication CS 4720 Mobile Application Development Authentication Mobile Application Development System Security Human: social engineering attacks Physical: steal the server itself Network: treat your server like a 2 year old Operating System: the war

More information

Welcome to our online Web Help for the Activity Fund Accounting System software.

Welcome to our online Web Help for the Activity Fund Accounting System software. Welcome to our online Web Help for the Activity Fund Accounting System software. Version 1.2 LOCAL GOVERNMENT CORPORATION ALL RIGHTS RESERVED 2010-2018 REV. 02/06/2018 Portions copyright 1988 - Acucorp,

More information

Business Online Banking & Bill Pay Guide to Getting Started

Business Online Banking & Bill Pay Guide to Getting Started Business Online Banking & Bill Pay Guide to Getting Started What s Inside Contents Security at Vectra Bank... 4 Getting Started Online... 5 Welcome to Vectra Bank Business Online Banking. Whether you re

More information

Accounting Transaction JSON API

Accounting Transaction JSON API Accounting Transaction JSON API Table of Contents Document Version...2 Introduction...2 Http Post Parameters...2 Account Status:...3 Get...3 Invoice:...4 Save...4 Receipt:...9 Save...9 Transaction:...13

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

Vantiv ecommerce for Magento 1 User Guide. Version 1.0.7

Vantiv ecommerce for Magento 1 User Guide. Version 1.0.7 Vantiv ecommerce for Magento 1 User Guide Version 1.0.7 Vantiv ecommerce for Magento 1... 1 User Guide... 1 1. Project... 3 2. Onboarding... 3 3. Installation... 3 4. Configuration... 5 5. Nuances for

More information

1. Overview Account Configuration Details... 3

1. Overview Account Configuration Details... 3 WhatsApp Enterprise API - Technical Guide V4.4 July 2018 Index 1. Overview... 3 2. Account Configuration Details... 3 2.1 Provisioning of a Demo API... 3 2.2 Activation of Production API... 3 2.3 Setting

More information

Welcome New Client. Welcome to the family! keitaj.com

Welcome New Client. Welcome to the family! keitaj.com Welcome New Client Keitaj Images & Designs was founded in Southern, California - April of 2004 and now currently based in Bowie, Maryland. Whether this is your first website, or you want a redesign of

More information

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

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

More information

Valid from 18 th Dec 2017 till 31 st Jan 2018 Comprehensive Protection Package Host of Options to Shop From Offer Valid only on Purchase from www.hpshopping.in and Over the Counter Sales. Not Valid on

More information

FREQUENTLY ASKED QUESTIONS

FREQUENTLY ASKED QUESTIONS FREQUENTLY ASKED QUESTIONS REGISTRATION FAQs What is Popmoney? o Popmoney is an innovative personal payment service offered by leading financial institutions that eliminates the hassles of checks and cash.

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

Configuring CoCard for EBT Processing

Configuring CoCard for EBT Processing One Blue Hill Plaza, 16th Floor, PO Box 1546 Pearl River, NY 10965 1-800-PC-AMERICA, 1-800-722-6374 (Voice) 845-920-0800 (Fax) 845-920-0880 Configuring CoCard for EBT Processing The following documentation

More information

Drake Zero User s Manual

Drake Zero User s Manual .. Drake Zero User s Manual Tax Year 2017 Support.DrakeSoftware.com (828) 524-8020 Tax Year 2017 i Copyright The 2017 Drake Zero User s Manual, Drake Tax Software, and any other related materials are copyrighted

More information

Welcome from Our Sunday Visitor that will contain information you need to setup and access your Online Giving Account.

Welcome  from Our Sunday Visitor that will contain information you need to setup and access your Online Giving Account. 1. What do I need to get started Welcome Email from Our Sunday Visitor that will contain information you need to setup and access your Online Giving Account. Figure 1 2. Setting Up Your Online Giving Administrative

More information

Order Fulfillment. Note: The term IYC website refers to a gift card website built with IYC SiteBuilder.

Order Fulfillment. Note: The term IYC website refers to a gift card website built with IYC SiteBuilder. The page contains a listing and a brief invoice of physical and electronic gift card orders received through an It s Your Card (IYC) website. Orders may be processed directly through Lighthouse Transaction

More information

General Settings General Settings Settings

General Settings General Settings Settings Contents General Settings... 3 Payment Methods... 31 Currency Management... 35 Sales Tax... 37 Commission Settings... 40 Affiliate Commission Settings... 43 Email Templates Management... 46 Subscription

More information

Frequently Asked Questions

Frequently Asked Questions Frequently Asked Questions Does this program replace the existing True Q program? Yes. Our new True Q rewards program is designed to thank our guests with exclusive menu offerings, deals and discounts.

More information

TRAVIDA Frequently Asked Questions (FAQ) and User Tips

TRAVIDA Frequently Asked Questions (FAQ) and User Tips TRAVIDA Frequently Asked Questions (FAQ) and User Tips How can we beat online rates? Pricing available to the general public is bound by Rate Parity, which can be defined as maintaining consistent rates

More information

MANAGED PRINT SERVICES. Process Steps 1.2

MANAGED PRINT SERVICES. Process Steps 1.2 MANAGED PRINT SERVICES Process Steps 1.2 Enter Sales Proposal : Role Sales Enter Sales Proposal 1 Customer Information : - Contract Address - Invoice Address There are 2 possibilities to enter the customer

More information

Citibank Online Demo

Citibank Online Demo Citibank Online Demo Click on your desired function below to view the steps Credit Cards 2 2 5 7 10 12 14 14 16 18 18 20 The screens and information displayed are for illustration purpose only. Please

More information

ACTIVE Net Insights Interactive reports. (v5.4)

ACTIVE Net Insights Interactive reports. (v5.4) ACTIVE Net Insights Interactive reports (v5.4) Version Date 5.4 January 23, 2018 5.3 November 28, 2017 5.2 October 24, 2017 5.1 September 26, 2017 ACTIVE Network, LLC 2017 Active Network, LLC, and/or its

More information

Merchant Portal User Guide

Merchant Portal User Guide Merchant Portal User Guide TABLE OF CONTENTS Accessing the Click Merchant Portal... 3 Virtual Terminal... 4 Single Entry (Merchant Enters Card Details)... 5 Payment Using Collected Card Details... 5 Payment

More information

GDC 2015 GROUP REGISTRATION DEADLINE FOR REGISTRATION» EARLY ENDS 1/21 REGULAR ENDS 2/25 W/GROUP DISCOUNT $1, $1,795 50

GDC 2015 GROUP REGISTRATION DEADLINE FOR REGISTRATION» EARLY ENDS 1/21 REGULAR ENDS 2/25 W/GROUP DISCOUNT $1, $1,795 50 STEP 1 GDC GROUP OPTIONS GDC group registration discount applies to any combination of 10 or more All Access, Main Conference, Summits, Tutorials & Bootcamps, and Audio Track Passes. The Expo Pass and

More information

PowerStore 2: Customizing the WA_Globals.php file

PowerStore 2: Customizing the WA_Globals.php file PowerStore 2: Customizing the WA_Globals.php file This document covers all the settings included in the WA_Globals.php file for PowerStore 2. Refer to this document for information regarding each of the

More information

CyberSource Global Payment Management

CyberSource Global Payment Management CyberSource Global Payment Management Magento 2.x Implementation Guide Version 1.1.0 August 2017 Extract Use this guide to install and configure the CyberSource extension for Magento 2.x. Contents Recent

More information

Extend your Total Warranty Coverage to 3 years Onsite (1 Year Standard + 2 Year Extended)

Extend your Total Warranty Coverage to 3 years Onsite (1 Year Standard + 2 Year Extended) Extend your Total Warranty Coverage to 3 years Onsite (1 Year Standard + 2 Year Extended) OR Pine Perk Gift card worth Rs 1000. This is an E-Voucher and will be sent on the registered email id. Customers

More information

YourCause, LLC. User Guide. Employee User Guide. Need Help? or

YourCause, LLC. User Guide. Employee User Guide. Need Help? or Employee User Guide Table of Contents Click on the section you would like to jump to to learn more Set Up a Profile Find a Charity Log New Hours Create Event (Recruit) Search for a Volunteer Event Record

More information

Oracle CPQ Cloud. What s New in 2016 R2

Oracle CPQ Cloud. What s New in 2016 R2 Oracle CPQ Cloud What s New in 2016 R2 December 2016 Revised: March 2017 TABLE OF CONTENTS REVISION HISTORY... 4 OVERVIEW... 5 Give Us Feedback... 5 RELEASE FEATURE SUMMARY... 6 MODERN SELLING EXPERIENCE...

More information

ChainCloud Documentation

ChainCloud Documentation ChainCloud Documentation Release 0.0.1 WH Apr 25, 2018 Contents 1 Overview 3 1.1 What is ChainCloud?........................................... 3 1.2 Architecture...............................................

More information

Guide to Getting Started. Personal Online Banking & Bill Pay

Guide to Getting Started. Personal Online Banking & Bill Pay Guide to Getting Started Personal Online Banking & Bill Pay What s Inside Welcome to National Bank of Arizona s Online Banking. Whether you re at home, at work, or on the road, our online services are

More information

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

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

More information

DOCUMENT NAME: etrakit Process Manual etrakit Process Manual

DOCUMENT NAME: etrakit Process Manual etrakit Process Manual Policies and Business Practices DOCUMENT NAME: DOCUMENT HISTORY: Revision Date Comments A September 28, 2009 Initial Release B September 30, 2009 Minor edits C October 7, 2009 Minor edits and corrections

More information