gurado REST API Documentation
|
|
|
- Walter Balsemão
- 7 Há anos
- Visualizações:
Transcrição
1 gurado REST API Documentation Table of Contents: 1. Authentication & Headers 2. gurado Rest API operations 2.1 Vouchers Look up a voucher Sale a voucher Redeem a voucher List voucher s Generate a voucher List all vouchers Convert old to new voucher The gurado REST API uses HTTP verbs and a RESTful endpoint structure. Request and Response are formatted as JSON or XML format. The gurado REST API is supported in live environment and generally used in EPOS Terminal System where vouchers are sold and redeemed. The following endpoints address our live environment: Where {shop-name} is your gurado shop name. A complete REST operation is formed by combining an HTTP method (or
2 verb ) with the full URI to the resource you re addressing. For example, here is the operation to get voucher information: Where v1.0 is the current version of this api and in future can be changed with latest version Authentication & Headers: With each API call, you ll need to set request headers, including Consumer key & consumer secret which is supplied by gurado system. Use X-GURADO- CONSUMER-KEY variable to provide Consumer key & X-GURADO- CONSUMER-SECRET variable to provide the Consumer secret to gurado system as your Auth credentials. gurado Rest API operations: Here are the available gurado REST API operations: 1. Look up a voucher: Get information of a particular voucher by using voucher code or external ID Method: GET Urls: Or {externalid} Where {code} is voucher code and {externalid} is external ID of a voucher used in Consumer system. Request: Pass the voucher code or external ID in the endpoint. Response: Returns a Voucher object in JSON or XML format. code Voucher Code externalid Voucher External ID Characters, Numbers and - are allowed Numbers
3 pin int Secure Pin 4 digit number currencycode Currency code Currency code like EUR, CHF type Voucher Type balance numberofusesallowed double int numberofusesremaining int Balance of Voucher Total number of voucher usage allowed Total number of voucher usage remaining validfromdate date Valid From Date validtodate date Valid To Date GIFT_VOUCHER, TICKET, COUPON, SEASON_TICKET, MULTI_SCAN_TICKET, TIME_BOUND_TICKET, , , NOT_APPLICABLE 0-999, NOT_APPLICABLE YYYY-MM-DD HH:MM:SS, YYYY-MM-DD HH:MM:SS, isoldvoucher int Is Old Voucher 1 OLD, 0 - NEW status creationdate date Status of Voucher Voucher creation date soldby Transaction by ACTIVE, INACTIVE, PENDING, YYYY-MM-DD HH:MM:SS, ONLINE_SHOP, IN_STORE, ordernumber int Order Number 10 digit number invoicenumber int Invoice Number 10 digit number receiptnumber int Receipt Number 10 digit number paymentmethod Payment Method Characters product object Product object Product details object recipient object Recipient object Recipient details object Product Object:
4 name Product Name Max. 255 characters price double Product price ,99 taxrate double Tax rate externalsku External Sku is a unique identification code of a Product Max. 50 characters usually alphanumeric Recipient Object: name Recipient Name Max. 50 characters alphanumeric Recipient Address [email protected] address object Address Object Address details object Address Object: street Street postcode Postcode city City Name country Country Name Max. 100 characters Max. 10 characters Max. 20 characters Max. 20 characters
5 EXAMPLE: REQUEST: IJKL Or Request Sample: curl -v -X GET or ext-{externalid} \ -H "ACCEPT:application/json" \ -H "X-GURADO-CONSUMER-KEY: <Key-Token>" \ -H "X-GURADO-CONSUMER-SECRET: <Secret-Token>" RESPONSE JSON format: { "voucher":{ "code":"abcd-efgh-ijkl", "externalid":"12345", "pin":"1234", "currencycode":"eur", "type":"gift_voucher", "balance":20.00, "numberofusesallowed":"not_applicable", "numberofusesremaining":"not_applicable", "validfromdate":" :00:00", "validtodate":" :00:00", "isoldvoucher":0, "status":"active", "creationdate":" :00:00", "soldby": "ONLINE_SHOP" "ordernumber": " " "invoicenumber": " " "receiptnumber": "NOT_APPLICABLE" "paymentmethod": "PAYPAL_STANDARD" "product":{
6 } } "name":"gift Voucher", "price":20, "taxrate":19, "externalsku":"gv123" }, "recipient":{ "name":"georg Dirk", " ": [email protected], "address":{ "street": Wittbräucker Str. 32, "postcode":44287, "city": Dortmund, "country": Germany } } XML format: <?xml version="1.0" encoding="utf-8"?> <xml> <voucher> <code>abcd-efgh-ijkl</code> <externalid>12345</externalid> <pin>1234</pin> <currencycode>eur</currencycode> <type>gift_voucher</type> <balance>20.00</balance> <numberofusesallowed>not_applicable</numberofusesallowed> <numberofusesremaining>not_applicable</numberofusesremaining> <validfromdate> :00:00</validFromDate> <validtodate> :00:00</validToDate> <isoldvoucher>0</isoldvoucher> <status>active</status> <creationdate> :00:00</creationDate> <soldby>online_shop</soldby> <ordernumber> </ordernumber> <invoicenumber> </invoicenumber> <receiptnumber>not_applicable</receiptnumber>
7 <paymentmethod>paypal_standard</paymentmethod> <product> <name>gift Voucher</name> <price>20</price> <taxrate>19</taxrate > <externalsku>gv123</externalsku> </product> <recipient> <name>georg Dirk</name> <address> <street>wittbräucker Str. 32</street> <postcode>44287</postcode> <city>dortmund</city> <country>germany</country> </address> </recipient> </voucher> </xml> 2. Sale a voucher: Sale a Voucher by using voucher code or external ID Method: PUT Urls: Or {externalid}/sale Where {code} is voucher code and {externalid} is external ID of a voucher used in Consumer system. Request:
8 externalproductsku External Sku is a unique identification code of Product Max. 50 characters usually alphanumeric amount double Voucher sale value ,99 Date date Transaction Date YYYY-MM-DD HH:MM:SS Response: Property type Description Value details messagestatus Status of sale SUCCESS, FAILURE messagecode Unique code to identify message VOUCHER_SOLD_SUCCESSFULLY, VOUCHER_SALE_FAILED messagedescription Details of message Text Request Sample: curl -v or ext-{externalid}/sale \ -H "ACCEPT:application/json" \ -H "X-GURADO-CONSUMER-KEY: <Key-Token>" \ -H "X-GURADO-CONSUMER-SECRET: <Secret-Token>" \ -d externalproductsku=1245 -d amount= d Date= :00:00 3. Redeem a voucher: Redeem a Voucher by using voucher code or external ID with
9 Method: PUT Urls: {externalid}/redeem Where {code} is voucher code and {externalid} is external ID of a voucher used in Consumer system. Request: amount double Voucher sale value ,99 Date date Transaction Date YYYY-MM-DD HH:MM:SS Response: Property type Description Value details messagestatus Status of sale SUCCESS, FAILURE messagecode Unique code to identify message VOUCHER_REDEEMED_SUCCESSFULLY, VOUCHER_REDEMPTION_FAILED messagedescription Details of message Text Request Sample:
10 curl -v or ext-{externalid}/redeem \ -H "ACCEPT:application/json" \ -H "X-GURADO-CONSUMER-KEY: <Key-Token>" \ -H "X-GURADO-CONSUMER-SECRET: <Secret-Token>" \ -d amount= d Date= :00:59 4. List voucher s: Get List of voucher by using voucher code or external ID with Method: GET Urls : {externalid}/s Where {code} is voucher code and {externalid} is external ID of a voucher used in Consumer system. Request: Pass the voucher code or external ID in the endpoint. Response: Returns a Voucher object in JSON or XML format. code Voucher Code externalid Voucher External ID Characters, Numbers and - are allowed Numbers pin int Secure Pin 4 digit number currencycode Currency code type Voucher Type Currency code like EUR, CHF GIFT_VOUCHER, TICKET, COUPON, SEASON_TICKET, MULTI_SCAN_TICKET, TIME_BOUND_TICKET,
11 balance numberofusesallowed double int numberofusesremaining int Balance of Voucher Total number of voucher usage allowed Total number of voucher usage remaining validfromdate date Valid From Date validtodate date Valid To Date , , NOT_APPLICABLE 0-999, NOT_APPLICABLE YYYY-MM-DD HH:MM:SS, YYYY-MM-DD HH:MM:SS, isoldvoucher int Is Old Voucher 1 OLD, 0 - NEW status Status of Voucher creationdate date Transaction by ACTIVE, INACTIVE, PENDING, ONLINE_SHOP, IN_STORE, soldby Order Number 10 digit number ordernumber int Invoice Number 10 digit number invoicenumber int Receipt Number 10 digit number receiptnumber int Payment Method Characters paymentmethod Product object Product details object product object Recipient object Recipient details object recipient object Transactions object List of voucher history s Product Object:
12 name Product Name Max. 255 characters price double Product price ,99 taxrate double Tax rate externalsku External Sku is a unique identification code of a Product Max. 50 characters usually alphanumeric Recipient Object: name Recipient Name Max. 50 characters alphanumeric Recipient Address [email protected] address object Address Object Address details object Address Object: street Street Max. 100 characters postcode Postcode Max. 10 characters city City Name Max. 20 characters country Country Name Max. 20 characters
13 Transaction Object: outlet Name of outlet that performed action Transaction action amount double Transaction amount date date Date of ordernumber receiptnumber int int externalreceiptnumber order number if voucher purchased online receipt number if voucher purchased in store External receipt number generated by consumer Max. 100 characters SALE, REDEEM, CORRECT ,99 YYYY-MM-DD HH:MM:SS, Max. 10 digit number Max. 10 digit number Max. 50 characters EXAMPLE: REQUEST IJKL/s or /s Request Sample: curl -v -X GET or ext-{externalid}/s \ -H "ACCEPT:application/json" \ -H "X-GURADO-CONSUMER-KEY: <Key-Token>" \ -H "X-GURADO-CONSUMER-SECRET: <Secret-Token>"
14 RESPONSE JSON format: { "voucher":{ "code":"abcd-efgh-ijkl", "externalid":"12345", "pin":"1234", "currencycode":"eur", "type":"gift_voucher", "balance":20.00, "numberofusesallowed":"not_applicable", "numberofusesremaining":"not_applicable", "validfromdate":" :00:00", "validtodate":" :00:00", "isoldvoucher":0, "status":"active", "creationdate":" :00:00", "soldby": "ONLINE_SHOP" "ordernumber": " " "invoicenumber": " " "receiptnumber": "NOT_APPLICABLE" "paymentmethod": "PAYPAL_STANDARD" "product":{ "name":"gift Voucher", "price":20, "taxrate":19, "externalsku":"gv123" }, "recipient":{ "name":"georg Dirk", " ": [email protected], "address":{ "street": Wittbräucker Str. 32, "postcode":44287, "city": Dortmund, "country": Germany } }, "s":[
15 } } ] { }, { } "outlet":"gurado", "action":"sale", "amount":20, "date":" :00:00", "ordernumber":"not_applicable", "receiptnumber":" ", "externalreceiptnumber":"not_applicable" "outlet":"gurado", "action":"redeem", "amount":18, "date":" :00:00", "ordernumber":"not_applicable", "receiptnumber":" ", "externalreceiptnumber":"not_applicable" XML format: <?xml version="1.0" encoding="utf-8"?> <xml> <voucher> <code>abcd-efgh-ijkl</code> <externalid>12345</externalid> <pin>1234</pin> <currencycode>eur</currencycode> <type>gift_voucher</type> <balance>20.00</balance> <numberofusesallowed>not_applicable</numberofusesallowed> <numberofusesremaining>not_applicable</numberofusesremaining> <validfromdate> :00:00</validFromDate> <validtodate> :00:00</validToDate> <isoldvoucher>0</isoldvoucher>
16 <status>active</status> <creationdate> :00:00</creationDate> <soldby>online_shop</soldby> <ordernumber> </ordernumber> <invoicenumber> </invoicenumber> <receiptnumber>not_applicable</receiptnumber> <paymentmethod>paypal_standard</paymentmethod> <product> <name>gift Voucher</name> <price>20</price> <taxrate>20</taxrate > <externalsku>gv123</externalsku> </product> <recipient> <name>georg Dirk</name> <address> <street>wittbräucker Str. 32</street> <postcode>44287</postcode> <city>dortmund</city> <country>germany</country> </address> </recipient> <s> <> <outlet>gurado</outlet> <action>sale</action> <amount>20</amount> <date> :00:00</date> <ordernumber>not_applicable</ordernumber> <receiptnumber> </receiptnumber> <externalreceiptnumber>not_applicable</externalreceiptnumber> </> <> <outlet>gurado</outlet> <action>redeem</action> <amount>18</amount> <date> :00:00</date> <ordernumber>not_applicable</ordernumber>
17 <receiptnumber> </receiptnumber> <externalreceiptnumber>not_applicable</externalreceiptnumber> </> </s> </voucher> </xml> 5. Generate and sale a voucher: Generate and sale a Voucher Method: POST Urls: Request: externalproductsku External Sku is a unique identification code of Product Max. 50 characters usually alphanumeric amount double Voucher sale value ,99 Date date Transaction Date YYYY-MM-DD HH:MM:SS Response: Property type Description Value details messagestatus Status of generate SUCCESS, FAILURE messagecode Unique code to identify message AUTO_VOUCHER_GENERATION_NOT_ALLOWED, INVALID_AMOUNT, UNABLE_TO_GENERATE_NEW_VOUCHER, PRODUCT_NOT_FOUND, VOUCHER_SALE_FAILED
18 messagedescription Details of message Text Request Sample: curl -v \ -H "ACCEPT:application/json" \ -H "X-GURADO-CONSUMER-KEY: <Key-Token>" \ -H "X-GURADO-CONSUMER-SECRET: <Secret-Token>" \ -d externalproductsku=1245 -d amount= d Date= :00:00 6. List all vouchers: Get information of all vouchers with pagination Method: GET Urls: Request: fromdate todate page pagesize date date int int From Date (url encoded) To Date (url encoded) Current page number Number of vouchers per page YYYY-MM-DD HH:MM:SS Default all vouchers YYYY-MM-DD HH:MM:SS Default all vouchers Default 1 Default 20, Max 100 vouchers per page Response: Returns a list of Voucher objects in JSON or XML format.
19 code Voucher Code externalid Voucher External ID Characters, Numbers and - are allowed Numbers pin int Secure Pin 4 digit number currencycode Currency code Currency code like EUR, CHF type Voucher Type balance numberofusesallowed double int numberofusesremaining int Balance of Voucher Total number of voucher usage allowed Total number of voucher usage remaining validfromdate date Valid From Date validtodate date Valid To Date GIFT_VOUCHER, TICKET, COUPON, SEASON_TICKET, MULTI_SCAN_TICKET, TIME_BOUND_TICKET, , , NOT_APPLICABLE 0-999, NOT_APPLICABLE YYYY-MM-DD HH:MM:SS, YYYY-MM-DD HH:MM:SS, isoldvoucher int Is Old Voucher 1 OLD, 0 - NEW status creationdate date Status of Voucher Voucher creation date soldby Transaction by ACTIVE, INACTIVE, PENDING, YYYY-MM-DD HH:MM:SS, ONLINE_SHOP, IN_STORE, ordernumber int Order Number 10 digit number invoicenumber int Invoice Number 10 digit number receiptnumber int Receipt Number 10 digit number paymentmethod Payment Method Characters product object Product object Product details object
20 recipient object Recipient object Recipient details object Product Object: name Product Name Max. 255 characters price double Product price ,99 taxrate double Tax Rate externalsku External Sku is a unique identification code of a Product Max. 50 characters usually alphanumeric Recipient Object: name Recipient Name Max. 50 characters alphanumeric Recipient Address [email protected] address object Address Object Address details object Address Object: street Street Max. 100 characters
21 postcode Postcode city City Name country Country Name Max. 10 characters Max. 20 characters Max. 20 characters Paging Object: total int Total Vouchers perpage int Vouchers per Page currentpage int Current Page lastpage int Last Page from int Vouchers From to int Vouchers To EXAMPLE: REQUEST: Request Sample: curl -v -X GET " >&pagesize=<page-size>" \ -H "ACCEPT:application/json" \ -H "X-GURADO-CONSUMER-KEY: <Key-Token>" \ -H "X-GURADO-CONSUMER-SECRET: <Secret-Token>"
22 7. Convert old to new voucher: Convert old to new voucher by using voucher code or external ID Method: PUT Urls: {externalid}/convert Where {code} is voucher code and {externalid} is external ID of a voucher used in Consumer system. Request: newvouchercode New voucher code Alphanumeric amount double Voucher correction value ,99 Date date Transaction Date YYYY-MM-DD HH:MM:SS Response: Property type Description Value details messagestatus Status of conversion SUCCESS, FAILURE messagecode Unique code to identify message VOUCHER_CONVERTED_SUCCESSFULLY, VOUCHER_CONVERSION_FAILED
23 messagedescription Details of message Text Request Sample: curl -v or ext-{externalid}/convert \ -H "ACCEPT:application/json" \ -H "X-GURADO-CONSUMER-KEY: <Key-Token>" \ -H "X-GURADO-CONSUMER-SECRET: <Secret-Token>" \ -d newvouchercode=xxxxx-xxxxx -d amount= d Date= :00:59
MERCHANDISE ORDER FORM
MERCHANDISE ORDER FORM Items and Prices Effective February 10th, 2016 and Are Subject to Change Without Notice BILLING INFORMATION NAME (Club or Individual) US Figure Skating ID# ADDRESS CITY STATE ZIP
Serviços: API REST. URL - Recurso
Serviços: API REST URL - Recurso URLs reflectem recursos Cada entidade principal deve corresponder a um recurso Cada recurso deve ter um único URL Os URLs referem em geral substantivos URLs podem reflectir
BR localization: Hotfix 003. Technical documentation Documentação Técnica Version Dec 12, de Dezembro de 2018
ENTERPRISE MANAGEMENT BR localization: Hotfix 003 Technical documentation Documentação Técnica Version 11.10.0 Dec 12, 2018 12 de Dezembro de 2018 Contents Prerequisites 3 Patch Installation 4 Instructions
Serviç os da Web de distribuiç ã o digital (DDWS) GetMyPrice - Serviço manual
Serviç os da Web de distribuiç ã o digital (DDWS) GetMyPrice - Serviço manual ÍNDICE Histórico de revisão... 2 1 Introdução... 3 1.1 Visão geral... 3 1.2 Documentos de suporte... 3 2 Introdução... 3 3
Manual do Checkout 2.0
Manual do Checkout 2.0 SUMÁRIO API CHECKOUT 2.0... 3 URL s para requisições... 3 Criação de Ordem de Pagamento... 4 Retorno da Requisição para Criação da Ordem de Pagamento com sucesso... 7 Retorno da
BR localization: Hotfix 109. Technical documentation Documentação Técnica Version Oct 23, de outubro de 2018
ENTERPRISE MANAGEMENT BR localization: Hotfix 109 Technical documentation Documentação Técnica Version 8.0.7 Oct 23, 2018 23 de outubro de 2018 Contents Prerequisites 3 Patch Installation 4 Instructions
Financial leasing services
Financial leasing services Info Version 2 Url http://com.mercell.com/permalink/43011523.aspx External tender id 155676-2014 Tender type Contract Award Document type Contract award Procurement procedure
BR localization: Hotfix 002. Technical documentation Documentação Técnica Version Nov 27, de novembro de 2018
ENTERPRISE MANAGEMENT BR localization: Hotfix 002 Technical documentation Documentação Técnica Version 11.10.0 Nov 27, 2018 27 de novembro de 2018 Contents Prerequisites 3 Patch Installation 4 Instructions
PAPO SMS MANUAL DE INTEGRAÇÃO DO DESENVOLVEDOR VERSÃO 1.0.1
PAPO SMS MANUAL DE INTEGRAÇÃO DO DESENVOLVEDOR VERSÃO 1.0.1 APRESENTAÇÃO O WEBSERVICE 1.0 foi desenvolvido para facilitar a solicitação e integração de dados de uma determinada conta PAPO. Sendo que, com
Manual de utilização do Terminal de Pagamento Electrónico Virtual
TPEV Manual de utilização do Terminal de Pagamento Electrónico Virtual Versão: 0.2 Data: 19/07/2011 1/12 INDÍCE Página 1. Introdução 1.1. Objecto do documento 3 1.2. Contactos 3 2. Login no Terminal de
Como Mudar a Senha do Roteador Pelo IP o.1.1. Configure e Altere a Senha do seu Roteador acessando o IP Acesse o Site e Confira!
Como Mudar a Senha do Roteador Pelo IP 192.168.o.1.1. Configure e Altere a Senha do seu Roteador acessando o IP 192.168.1.1. Acesse o Site e Confira! If you are using the IP address 192.168.0.1.1, take
2 Categorias Categories Todas as categorias de actividade são apresentadas neste espaço All activity categories are presented in this space
1 Próximas Actividades Next Activities Visualiza as próximas actividades a ter inicio, com a indicação do tempo restante Displays upcoming activities and indicating the remaining time 2 Categorias Categories
1 INTRODUÇÃO CERTIFICADO DE SEGURANÇA SSL AUTENTICAÇÃO WEB METHOD: LOGIN WEB METHOD: LISTBONDCODES...
ÍNDICE 1 INTRODUÇÃO... 3 2 CERTIFICADO DE SEGURANÇA SSL... 3 3 AUTENTICAÇÃO... 4 4 WEB METHOD: LOGIN... 5 5 WEB METHOD: LISTBONDCODES... 6 6 WEB METHOD: LISTBONDCODESCSV... 6 7 WEB METHOD: LISTTITULOSPUBLICOS...
1 INTRODUÇÃO CERTIFICADO DE SEGURANÇA SSL AUTENTICAÇÃO WEB METHOD: LOGIN WEB METHOD: LISTBONDCODES...
ÍNDICE 1 INTRODUÇÃO... 3 2 CERTIFICADO DE SEGURANÇA SSL... 3 3 AUTENTICAÇÃO... 4 4 WEB METHOD: LOGIN... 5 5 WEB METHOD: LISTBONDCODES... 6 6 WEB METHOD: LISTBONDCODESCSV... 6 7 WEB METHOD: LISTTITULOSPUBLICOS...
A Direção-Geral do Território disponibiliza aos seus clientes diversas modalidades de pagamento:
Modalidades de Pagamento A disponibiliza aos seus clientes diversas modalidades de pagamento: Estações de CTT Cheque por Correio Depósito Bancário Transferência Bancária Balcão 'Loja da DGT' Estações dos
CANape/vSignalyzer. Data Mining and Report Examples Offline Analysis V
CANape/vSignalyzer Data Mining and Report Examples Offline Analysis V16.0 2018-07-30 Offline Evaluation Tools On-line Tools CANalyzer. Messages CANoe. Messages CANape. Signals Off-line Tools vsignalyzer
Manual do Desenvolvedor Pagamento Recorrente. Fevereiro de 2013 Versão 2
Manual do Desenvolvedor Pagamento Recorrente Fevereiro de 2013 Versão 2 ÍNDICE PÁGINA 1. Pagamento Recorrente... 1 2. Método de captura de Transações Recorrentes... 2 2.1 Elementos esquemáticos da Solicitação...
SQL CREATE DATABASE. MySQL, SQL Server, Access, Oracle, Sybase, DB2, e outras base de dados utilizam o SQL.
LINGUAGEM SQL SQL CREATE DATABASE MySQL, SQL Server, Access, Oracle, Sybase, DB2, e outras base de dados utilizam o SQL. SQL CREATE TABLE SQL NOT NULL O valor NOT NULL obriga que o campo contenha sempre
PURCHASE-TO-PAY SOLUTIONS
PURCHASE-TO-PAY SOLUTIONS May 2015 SaphetyDoc - RELEASE NOTES 6.1.4.8 Offer Management SaphetyDoc - RELEASE NOTES 6.1.4.8. SaphetyDoc s release 6.1.4.8 will start production phase in 13/05/2015. PDF format:
VGM. VGM information. ALIANÇA VGM WEB PORTAL USER GUIDE June 2016
Overview The Aliança VGM Web portal is an application that enables you to submit VGM information directly to Aliança via our e-portal Web page. You can choose to enter VGM information directly, or to download
Customizing Guide Homolognet Version 2
Customizing Guide Homolognet Version 2 2010 SAP AG Customizing Guide Page 1 of 12 Copyright Copyright @ 2010 SAP AG. All rights reserved. No part of this documentation may be reproduced or transmitted
MT BOOKING SYSTEM BACKOFFICE. manual for management
MT BOOKING SYSTEM BACKOFFICE manual for management BACKOFFICE BACKOFFICE Últimas Reservas Latest Bookings 8 7 6 3 2 2 Configurações Configuration - pag. 3 Barcos Boats - pag.8 Pessoal Staff - pag.0 Agentes
Manual Direct100 API V2 RICCARDO BARANA
Manual Direct100 API V2 RICCARDO BARANA AVISO A versão com o URL-base https://direct100.inesting.com/... da API será descontinuada no dia 27 de março de 2019. Recomendamos aos novos clientes que utilizem
Manual de Integração do icarta
Manual de Integração do icarta Versão 1.00 Abril 2014 Controle de Versões Versão Data 1.00 16/04/2014 1. Introdução Este documento tem por objetivo a definição das especificações e critérios técnicos necessários
Universo Online. Loja de Aplicativos - API v1.0 [05/2012]
Universo Online Loja de Aplicativos - API v1.0 [05/2012] Conteúdo 1 Introdução 1.1 Sobre o provisionamento............................ 1.2 Detalhes do mecanismo de integração..................... 1.2.1
CAPLE EXAMS 2018 WHAT ARE CAPLE EXAMS?
WHAT ARE CAPLE EXAMS? CAPLE exams constitute the Evaluation and Certification System of Portuguese as a Foreign Language, which certifies the general communicative competence of young and adult speakers
Pagador Transaction. Consulta. Versão 1.3
Pagador Transaction Consulta Versão 1.3 10/09/2013 SUMÁRIO HISTÓRICO DE ALTERAÇÕES... 3 INTRODUÇÃO... 4 OBJETIVO... 4 1. MÉTODO GETADDITIONALDATA... 6 1.1. RETORNO DO MÉTODO GETADDITIONALDATA... 6 2. MÉTODO
API icontrato. Versão 1.0. Para ajuda e informações, abra um chamado pelo
API icontrato Versão 1.0 Criamos essa API para integrar qualquer sistema com o icontrato. A comunicação do sistema do cliente para o icontrato terá um Header nomeado x-token para servir de autenticação,
Step by step to make the appointment at the Federal Police
Step by step to make the appointment at the Federal Police Before you start, check if you have these documents with you: Visa Application Form; Birth Certificate (original); Passport; Brazilian home address
DOCUMENTAÇÃO DE INTEGRAÇÃO 3DS
DOCUMENTAÇÃO DE INTEGRAÇÃO 3DS V 1.0.0 ÍNDICE INTRODUÇÃO 2 CENÁRIOS DE TESTES (SANDBOX) 3 CARTÕES PARA TESTES (SANDBOX) 3 TRANSAÇÃO COM 3DS 3 3DS URLs Para Envio dos Dados... 6 3DS Exemplo de Requisição...
Pagamento Recorrente estamos todos ligados
Manual do Desenvolvedor Pagamento Recorrente estamos todos ligados 01 02 03 Pagamento Recorrente 4 Método de captura de transações recorrentes 4 2.1 2.1.1 2.2 2.2.1 2.2.2 Elementos esquemáticos da solicitação
Application Programming Interface para interligação com WEuroGest
A P I Application Programming Interface para interligação com WEuroGest atualizado a 2018.01.11 Configuração do Serviço Página Principal Definição das configurações do serviço. SQL Server: Servidor de
VGM. VGM information. ALIANÇA VGM WEB PORTAL USER GUIDE September 2016
Overview The Aliança VGM Web portal is an application that enables you to submit VGM information directly to Aliança via our e-portal Web page. You can choose to enter VGM information directly, or to download
BR localization: Hotfix 117. Technical documentation Documentação Técnica Version Fev 12, de fevereiro de 2019
ENTERPRISE MANAGEMENT BR localization: Hotfix 117 Technical documentation Documentação Técnica Version 8.0.7 Fev 12, 2019 12 de fevereiro de 2019 Contents Prerequisites 3 Patch Installation 4 Instructions
Boleto Bancário estamos todos ligados
Manual do Desenvolvedor Boleto Bancário estamos todos ligados ÍNDICE 01 02 03 Boleto Bancário 3 Elementos da solicitação 4 2.1 BoletoTxn 4 2.2 Exemplo de XML 6 Elementos da resposta 7 04 05 06 Elementos
10 atributos de uma API de sucesso
10 atributos de uma API de sucesso Do design RESTful e segurança, a formas de divulgação e engajamento Kleber Bacili [email protected] @kleberbacili slideshare.net/kleberbacili Cerquilho Kleber
Vendors Enquiries for RFP 003/2015
Date: 22/10/2015 Vendors Enquiries for RFP 003/2015 1) Question I am afraid the terms of the RFP cannot be complied by none of the companies we work with, the terms have limited the underwriters ability
Addition of Fields in Line Item Display Report Output for TCode FBL1N/FBL5N
Addition of Fields in Line Item Display Report Output for TCode FBL1N/FBL5N Applies to: Any business user who uses the transactions FBL1N and FBL5N to display line item reports for vendors and customers.
PTC Exercício Programa GABARITO
PTC-3450 - Exercício Programa 2-2017 GABARITO Nesse exercício, você vai obter estimativas do timeout utilizado pelo TCP em uma troca de pacotes. Documento da forma mais detalhada possível suas respostas.
Como usar os comandos standby preempt e standby track
Como usar os comandos standby preempt e standby track Índice Introdução Pré-requisitos Requisitos Componentes Utilizados Convenções Informações de Apoio Exemplos de configuração Informações Relacionadas
UNIT 5: Review (UNIDADE 5: Revisão)
CHAPTER 4: Business Communication (CAPÍTULO 4: Comunicação de Negócios) UNIT 5: Review (UNIDADE 5: Revisão) I. LET S BEGIN (I. VAMOS COMEÇAR) Answer the questions below. (Responda às questões abaixo.)
Transcript name: 1. Introduction to DB2 Express-C
Transcript name: 1. Introduction to DB2 Express-C Transcript name: 1. Introduction to DB2 Express-C Welcome to the presentation Introduction to DB2 Express-C. In this presentation we answer 3 questions:
MANUAL DE INSTALAÇÃO E CONFIGURAÇÃO PLUGIN PAYU LATAM PARA O VIRTUEMART
MANUAL DE INSTALAÇÃO E CONFIGURAÇÃO PLUGIN PAYU LATAM PARA O VIRTUEMART 1. Requisitos do sistema Instalação do Joomla 2.5 com base de dados MySql 5.1 + Ter o Virtuemart versão 2+ instalado. Fazer o download
Admin Docs Documentation
Admin Docs Documentation Versão 3.0.0 FrontEnd Team 08/11/2016 Sumário 1 Visão Geral 3 2 Braspag Auth 5 2.1 Introdução................................................ 5 2.2 Obtenção de Autorização........................................
Geospatial Information for Integration and Development in Rio de Janeiro. Luiz Roberto Arueira City Information Director Marcus Silva GIS Consultant
Geospatial Information for Integration and Development in Rio de Janeiro Luiz Roberto Arueira City Information Director Marcus Silva GIS Consultant Context PREFEITURA DA CIDADE DO RIO DE JANEIRO Instituto
solaredx Documentation
solaredx Documentation Release 0.5 Pedro Vasconcelos April 29, 2014 Contents 1 Índice 3 1.1 Instalação e Configuração........................................ 3 1.2 API-v1..................................................
Futebol em Transmissão. Football is on the Air.
Futebol em Transmissão. Football is on the Air. Estamos prontos. We re ready. Informação sobre a gestão do espectro n0 UEFA Euro 2004. Information on spectrum management during UEFA Euro 2004. Entre em
COMPUTAÇÃO E PROGRAMAÇÃO
COMPUTAÇÃO E PROGRAMAÇÃO 1º Semestre 2015/2016 MEMec, LEAN Ficha da Aula Prática 6: Cadeias de caracteres (strings). Estruturas de dados (structures). Sumário das tarefas e objectivos da aula: 1. Utilizar
User Manual. Linksys PAP2 Broadband Phone Service. Linhagratuita grupo csdata
User Manual Linksys PAP2 Broadband Phone Service Linhagratuita grupo csdata www.linhagratuita.com.br Please follow the step-by-step guide below to set up your Linksys PAP2 for use with Linhagratuita Broadband
How to use the system. Meike Borstelmann
Technical ca Document Generatore Training: How to use the system Meike Borstelmann Trainings overview Why should we localize l the TDS with the Technical Document Generator? Keyword database Search for
Introdução à linguagem C++
Estrutura de Dados e Algoritmos e Programação e Computadores II Aula 2: Introdução à linguagem C++ Introdução à linguagem C++ Conceitos básicos: variáveis, tipos de dados, constantes, I/O, etc. Estruturas
Guia de Integração PayPay
Guia de Integração PayPay Histórico de revisões Versão Data Descrição das alterações 1.0 07/03/2016 Versão inicial 1.1 07/04/2016 Correção dos campos date, adicionado campo idtransaction no método dowebpayment.
Guia de Integração Gateway de Pagamentos Redunicre. Versão 1.1
Guia de Integração Gateway de Pagamentos Redunicre Versão 1.1 Índice Introdução...4 Contactos...4 Integração com a aplicação do comerciante...5 Inicializar pagamento web... 7 Redirecionar para a página
Este item do documento apresenta o AuthSnet, protocolo de autenticação usado para acessar os recursos privados (protected resource) da ServiceNet.
API Pagamento v1.0.0 1 - Autenticação 1.1 - Introdução Este item do documento apresenta o AuthSnet, protocolo de autenticação usado para acessar os recursos privados (protected resource) da ServiceNet.
Parte 3: Camada de Rede
Parte 3: Camada de Rede Objetivos: Visão Geral: Entender os princípios dos serviços da Camada de Rede: Roteamento (seleção de caminho). Implementação na Internet. Serviços da Camada de Rede. Princípios
GUIA API BTB /04/2019 INFORMAÇÃO PÚBLICA
05/04/019 SUMÁRIO 1 HISTÓRICO DE VERSÕES... 4 INTRODUÇÃO... 5 3 VISÃO GERAL... 5 3.1 Verbos HTTP API - BTB... 5 3. Uso do POST... 6 3.3 Uso do GET... 7 3.4 Endpo... 7 3.5 Restrições... 7 4 ENDEREÇOS DA
RADIUS avançado para clientes PPP de discagem
RADIUS avançado para clientes PPP de discagem Índice Introdução Pré-requisitos Requisitos Componentes Utilizados Convenções Configurar Diagrama de Rede Notas de configuração Configurações Verificar Troubleshooting
PagSeguro-Python Documentation
PagSeguro-Python Documentation Release 0.20 Ricardo Silva November 20, 2013 Contents 1 O que é 1 2 Instalação 3 3 Guia rápido 5 4 Guia de Uso 7 4.1 Solicitando um Pagamento........................................
Interface Padrão e Interface Personalizada estamos todos ligados
Manual do Desenvolvedor Interface Padrão e Interface Personalizada estamos todos ligados 01 02 03 04 Captura de cartões pela Interface Personalizada 3 1.1 Elementos da solicitação de configuração de sessão
PAPO SMS MANUAL DE INTEGRAÇÃO DO DESENVOLVEDOR VERSÃO 1.0
PAPO SMS MANUAL DE INTEGRAÇÃO DO DESENVOLVEDOR VERSÃO 1.0 APRESENTAÇÃO O WEBSERVICE 1.0 foi desenvolvido para facilitar a solicitação e integração de dados de uma determinada conta PAPO. Sendo que, com
Web Services REST. Sistemas Distribuídos. Mauro Lopes Carvalho Silva. Professor EBTT DAI Departamento de Informática Campus Monte Castelo
Sistemas Distribuídos Mauro Lopes Carvalho Silva Professor EBTT DAI Departamento de Informática Campus Monte Castelo Instituto Federal de Educação Ciência e Tecnologia do Maranhão Objetivos Nesta aula
Comportamento Organizacional: O Comportamento Humano no Trabalho (Portuguese Edition)
Comportamento Organizacional: O Comportamento Humano no Trabalho (Portuguese Edition) John W. Newstrom Click here if your download doesn"t start automatically Comportamento Organizacional: O Comportamento
Configurar o diretório corporativo do telefone no desenvolvimento CUCDM 8.x HC
Configurar o diretório corporativo do telefone no desenvolvimento CUCDM 8.x HC Índice Introdução Pré-requisitos Requisitos Componentes Utilizados Informações de Apoio Configurar (não desenvolvimento HC):
Click the + sign to add new server details. Clique no sinal de "+" para adicionar novos detalhes do servidor. Enter a friendly name for your BI Server
Click the + sign to add new server details Clique no sinal de "+" para adicionar novos detalhes do servidor Enter a friendly name for your BI Server Digite um nome amigável para o seu BI Server Enter the
Descrição: Retorna uma lista com todos os publishers disponíveis no middleware.
1 Publisher GET http://server:port/publisher Descrição: Retorna uma lista com todos os publishers disponíveis no middleware. Parâmetros: void. status: error: false, message: null, data: publishers: [ description:
API REST Alimentação/Retorno
Desenvolvedores API REST Alimentação/Retorno Versão 1.3.0 (5/11/2015) Vonix Av. Dr. Paulo Machado, 489 Campo Grande MS 79021-300 T 67 33180700 F 67 33180701 [email protected] www.vonix.com.br Índice
