.pl API. Technical datasheet v Jacek Partyka, MSERWIS

Size: px
Start display at page:

Download ".pl API. Technical datasheet v Jacek Partyka, MSERWIS"

Transcription

1 .pl API Technical datasheet v Jacek Partyka, MSERWIS 1

2 Contents Introduction...3 Command catalogue: check_domain check_multiple domain_book domain_transfer domain_info host_create host_info host_update contact_create contact_update contact_info domain_create domain_adddns domain_remdns domain_setcontact domain_renew account_balance account_last domain_getauthinfo domain_taste future_check future_info future_create...13 Example in PHP with curl:...14 Result codes:...15 Registry system parameters...18 API usage rules

3 Introduction Requirements for valid connection: 1. SSL protocol connection 2. Authorized IP 3. Correct information authorizing Partner (login/pwd) Test server: Live server: After signing up for the API, Partner is given access to test server with virtual amount of 5000 PLN. Operations are made on NASK test server, which consist small fragment of data of live server. To gain access to live server you have to execute each command correctly at least three times (except domain_transfer). Suggested scenario of tests: creation of two hosts in non-existent domain (e.g. ns1.domain.pl, ns2.domain.pl) creation of two contacts and collecting their id's execution of other commands After correct tests Partner will gain access to the live server. Operations made by Partner will be seen in administrative panel at Domeny.tv 3

4 Command catalogue: 1. check_domain Command checks if domain is available. command command, value = check_domain 2. check_multiple Command checks max. 10 domains command command, value = check_multiple s divided by semicolon (;) (each domain in separate line) 3. domain_book Command books domain for 14 days. command command, value = domain_book [dns1 first nameserver] [dns2 second nameserver] [dns3 third nameserver] [dns4 fourth nameserver] [dns5 fifth nameserver] Nameservers are optional. If you do not specify at least two nameservers the system will assign default ones. [;reservation_start_date;reservation_end_date] 4

5 4. domain_transfer Command transfers domain from other registrar. command command, value = domain_transfer param authinfo code [resend sends authorization once again, value=1 (option)] Authorization of domain transfer is accomplished after clicking on a link sent by NASK in , after transfer is initiated. Domain is added to Partner's account in one hour. 5. domain_info Shows information about domain. command command, value = domain_info [authinfo authinfo code (option)] Answer: domain_name;result [ crdate: <creation date> exdate: <expiry date> Status: <status> DNS[n]: <n-th dns> Registrant: <registrant id> Technical: <technical id> ] Command shows full data for domains registered by other registrants only in case of providing a valid authinfo code. 5

6 6. host_create Creates a host to system registry command command, value = host_create hostname host name hostip host IP Answer: host_name;result 7. host_info Shows information about host command command, value = host_info hostname host name Answer: host_name;result [ IP: <ip> [...] Status: <status> ] 8. host_update Upodates host information command command, value = host_update hostname host name hostip host IP Answer: host_name;result 6

7 9. contact_create Creates a contact and returns its ID Attention! All data must be provided in UTF-8 encoding. command command, value = contact_create address phone phone number in format: +country_code.phone_number, e.g name name or company name street street city city zip zip code district district country country (two-letter code, e.g.: pl) ctype company (0) or individual (1) cpubl publication agreement (1 = yes, 0 = no1) [org organisation name (optionally)] [fax fax number in format: +country_code.phone_number, e.g ] Answer: result[;contact_id] Attention! In case of choosing ctype=0 (company contact registration) ctype parameter must be set to contact_update Updates contact information Attention! All data must be provided in UTF-8 encoding. command command, value = contact_update address phone phone number in format: +country_code.phone_number, e.g name name or company name street street city city zip zip code district district country country (two-letter code, e.g.: pl) old_contact_id contact ID cpubl publication agreement (1 = yes, 0 = no1) [org organisation name (optionally)] [fax fax number in format: +country_code.phone_number, e.g ] 7

8 Answer: result 11. contact_info Shows information about contact command command, value = contact_info cid contact ID Answer: cid;result [ Consent: <publication agreement (true/false)> Individual: <true = individual, false = company> Name: <Name or company name> Org: <Organisation name> Street: <address> Street2: <address2> Street3: <address3> City: <city> District:<district> ZIP: <zip code> Country: <country> ] 12. domain_create Creates a domain command command, value = domain_create cid contact ID period number of years the domain is created {1-10} [dns1 first nameserver] [dns2 second nameserver] [dns3 third nameserver] [dns4 fourth nameserver] [dns5 fifth nameserver] Nameservers are optional. If you do not specify at least two nameservers the system will assign default ones. 8

9 13. domain_adddns Adds a dns to domain command command, value = domain_addns dns host name 14. domain_remdns Removes a DNS from domain Attention! Domain must have at least 2 DNS. command command, value = domain_remdns dns host name 15. domain_setcontact Command changes contact for domain Before you use this function be sure to have transfer form filled in. You can download them from: We reserve the right to ask you to present such form after each time this command is called. command command, value = domain_setcontact cid contact ID 9

10 16. domain_renew Command renews a domain command command, value = domain_renew period number of years {1-9} Attention! Renewal is only possible in x days before domain expiration. (Look at registry system parameters) 17. account_balance Command shows current account balance command command, value = account_balance Answer: account_balance; 18. account_last Command shows last 5 operations, which had influence on Partner's account (domain creation, renewal) command command, value = account_last Answer: operation_type;[domain_name/.];operation_value;amount 10

11 19. domain_getauthinfo command command, value = domain_getauthinfo Answer: domain_name;authinfo_code or domain_name;result This command has daily limit of executions which is set individually. 20. domain_taste Command registers domain for 14 days command command, value = domain_taste cid contact ID [dns1 first nameserver] [dns2 second nameserver] [dns3 third nameserver] [dns4 fourth nameserver] [dns5 fifth nameserver] Nameservers are optional. If you do not specify at least two nameservers the system will assign default ones. [;taste_start_date;taste_end_date] 21. future_check Checks if future exists command command, value = future_check 11

12 22. future_info Displays future info command command, value = future_check [ //if result == 4002 crdate: <date> exdate: <date> Registrant: <registrant's cid> ] 23. future_create Creates a future command command, value = future_check cid registrant's CID 12

13 Example in PHP with curl: function sendcommand($command){ $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, " curl_setopt($ch, CURLOPT_PORT, 443); curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 5); curl_setopt($ch, CURLOPT_TIMEOUT, 15); curl_setopt($ch, CURLOPT_HEADER, 0); curl_setopt($ch, CURLOPT_RETURNTRANSFER,1); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS, $command); $result=curl_exec($ch); curl_close($ch); return $result; } $command = array('login' => 'login', 'pwd' => 'pwd', 'command' => 'check_domain', 'domain' => 'domena.pl' ); $resp = sendcommand($command); var_dump($resp); 13

14 Result codes: 0 NASK server connection error 0001 Wrong domain format 0002 Domain available for registration 0003 No table with domains given 0004 Domain book error or domain unavailable 0005 Domain expired 0006 Domain registered, database error 0007 Wrong DNS server 0008 Wrong IP address 0009 Wrong host name 0010 Host name incorrect or host unavailable 0011 Host does not exist in NASK database 0012 No information in NASK registry 0013 Wrong Wrong phone number 0015 Wrong fax number 0016 Some data missing 0017 Wrong contact ID 0018 Contact does not exist in NASK database 0019 Host is not configured to handle this domain 0020 Improper renewal period 0021 Wrong period 0022 Wrong characters in given data 0023 You have no privileges to execute this command 0024 Domain does not exist in NASK database 0025 Too many command execution during this day 0026 Paid operations are not allowed 1000 Operation completed successfully 4000 No funds for this operation 4001 Future does not exist 4002 Future exists 4005 Futures not allowed in this zone 4006 Destination client of the transfer operation is contact sponsoring client 4007 Future authorization information missing 4008 Invalid future authorization information 4009 Domain name is banned 4010 Domain name is temporarily banned 4011 Registration of regional domain name is forbidden Domain is a zone 5050 Too many commands 7001 Wrong host name 7003 The same IP address entered twice 7004 Wrong IP address 7005 Host already exists 7006 Host does not exist 7007 Host is unresolvable 7008 Application of IP addresses is forbidden for this host 7009 Application of IP addresses is required for this host 8005 No address data for this contact given 8006 No different data for this contact given 8030 Companies must agree to publicate their data 9002 Invalid domain authorization information 9003 Period element is missing 9004 Period value is not multiplicity of one year 9005 Period value is not admissible 9007 Duplicate names of name server 9008 Host does not exist 9009 Host creation pending but it is not subordinate 9010 Host is not configured for domain 9011 Contact does not exist 14

15 9012 Too few name servers 9013 Too many name servers 9014 Domain name syntax error 9015 Domain name registration is forbidden 9016 Domain name is a zone name 9017 Zone is not managed by the system 9018 New registrant ID is current registrant ID 9019 Registration in this zone is forbidden 9020 Another domain renew in the same period 9021 Too few administrative contacts 9022 Too many administrative contacts 9023 Too few billing contacts 9024 Too many billing contacts 9025 Too few technical contacts 9026 Too many technical contacts 9027 Registrant id does not exist 9028 Domain name already exists 9029 Domain name is reserved by another client 9030 Period has been already set during domain reservation and cannot be set again 9031 Name servers have been already set during domain reservation and cannot be set again 9032 Registrant has been already set during domain reservation and cannot be set again 9033 Registrant element missing 9034 Contacts have been already set during domain reservation and cannot be set again 9035 Reason has been already set during domain reservation and cannot be set again 9036 Reason element missing 9037 Domain has subordinate hosts (so cannot be deleted) 9038 Destination client of the transfer operation is domain sponsoring client 9039 There is nothing to update 9040 Unsupported transfer option 9041 Domain is reserved 9042 Domain exists and is not reserved 9043 Domain has status clienttransferprohibited 9044 Domain has status servertransferprohibited 9045 Domain has status clientdeleteprohibited 9046 Domain has status serverdeleteprohibited 9047 Domain has status clientrenewprohibited 9048 Domain has status serverrenewprohibited 9049 Domain has status clientupdateprohibited 9050 Domain has status serverupdateprohibited 9051 Contact to addaddremaddrem is already associated with domain 9052 Contact to remove is not associated with domain 9053 Status to addaddremaddrem has not "client" prefix 9054 Status to remove has not "client" prefix 9055 Status to addaddremaddrem is already associated with domain 9056 Status to remove is not associated with domain 9057 Name server to addaddremaddrem is already associated with domain 9058 Name server to remove is not associated with domain 9059 DNS validator error 9060 Domain does not exist 9061 Duplicate contacts 9062 Domain:addAddRemAddRem element is empty 9063 Domain:remAddRemAddRem element is empty 9064 Domain:chgChg element is empty 9065 Domain registration is temporarily forbidden 9066 Regional domain registration is forbidden 9067 Reason text is too long 9068 Domain expired 9069 Setting domain status clienttransferprohibited is forbidden 9070 Confusable domain name exists 9071 Domain exists in state STATE_BLOCKED 9072 Domain exists in state STATE_BOOK_BLOCKED 9073 Domain exists in state STATE_DELETE_BLOCKED 9074 Domain exists in state STATE_EXPIRED 9075 Domain exists in state STATE_NULL 9076 Domain exists in state STATE_REGISTERED 9077 Domain exists in state STATE_RESERVED 15

16 9078 IDN domain reservation and registration is not allowed 9079 IDN domain reservation and registration is not allowed in this zone 9080 IDN validator initialization failed 9081 Name server to addaddremaddrem is subordinate for domain but has no IP addresses 9082 Renew is to early 9083 Invalid length of authinfo element 9084 Too many domain names 9085 Transfer is to early 9086 Lack of permissions to view status of domain transfer request 9087 Transfer period is not allowed 9088 Domain transfer pending 9089 Lack of permissions to cancel domain transfer request 9090 Domain transfer not pending 9091 Domain transfer confirmation link sending failed 9096 Domain name registration is forbidden due to the case in court of arbitration 9097 Domain transfer is not pending 9098 Request to resend confirmation link is not allowed for this command 9099 Domain exists in state STATE_TASTED 9100 Domain exists in state STATE_TESTED_BLOCKED 9101 Taste domain period is not allowed 9102 Taste domain book is not allowed 9103 This update is not allowed for taste domain 9104 Domain name is tasted by another client 9105 Registrant has been set already 9106 Contacts have been set already 9107 Book and Taste not allowed together 9999 Domain unavailable for registration (other reason) 16

17 Registry system parameters Parameter Test server Live server Minimal number of DNS' for domain 2 2 Maximal number of DNS' for domain 9 9 Maximal number of days until domain expiration, when renewal is possible Minimal number of days from last transfer (or creation) to next (first) transfer. Number of days before domain expiration, when transfer is not possible Time for transfer confirmation in days

18 API usage rules 1. The API is not intented for massive and repetetive calling of commands with same parameters. 2. All operations will be billed according to current pricelist assigned to Partner s account. 3. Partner is not allowed to call new command before current one has finished and sent response. Flooding the application may lead to banning of Partner's account. 4. Partner is solely liable for all operations performed using this API. 5. Partner is committed to all terms and conditions of usage of Domeny.tv's services and NASK Domain Name Regulations. 6. Partner acknowledges the fact that the API may be suspended temporarily without notice for technical maintenance or any other reason. 7. There is a limit of 1000 command per day. The limit may be changed at Domeny.tv s discretion. 8. Book, taste and register commands are executed with random delay, not exceeding few seconds. 9. Any API credential must be kept strictly confidential. 18

SWITCH, Werdstrasse 2, P.O. Box, CH-8021 Zürich www.nic.ch. EPP Manual. Version 2.1.2 with DNSSEC and RGP. November 7, 2013 SWITCH

SWITCH, Werdstrasse 2, P.O. Box, CH-8021 Zürich www.nic.ch. EPP Manual. Version 2.1.2 with DNSSEC and RGP. November 7, 2013 SWITCH EPP Manual Version 2.1.2 with DNSSEC and RGP November 7, 2013 SWITCH Contents 1 Management Summary... 3 2 Introduction... 3 2.1 EPP standard + legal fundaments... 4 2.2 Conditions of use... 4 3 Using the

More information

Manual for Registrars. Automated Interface. General Availability

Manual for Registrars. Automated Interface. General Availability Manual for Registrars Automated Interface General Availability 1. What is an API? An application programming interface (API) is the interface that a computer system, library or application provides in

More information

The Domain Name Registration Policy

The Domain Name Registration Policy The Domain Name Registration Policy version 3.2 developed jointly with Hostmaister LLC by public domain administrators and registrars on November 1, 2013 1 Table of Contents 1. General Provisions 3 2.

More information

Specifications for Registrars' Interaction with Flexireg Domain Registration System

Specifications for Registrars' Interaction with Flexireg Domain Registration System Foundation for Assistance for Internet Technologies and Infrastructure Development Specifications for Registrars' Interaction with Flexireg Domain Registration System Version 1.1. Moscow, 2015 Table of

More information

Specifications for Registrars' Interaction with the Domain Registration System During Landrush and General Registration Periods

Specifications for Registrars' Interaction with the Domain Registration System During Landrush and General Registration Periods Фонд содействия развитию технологий и инфраструктуры Интернета Введено в действие: 24 сентября 2014 г. Foundation for Assistance for Internet Technologies and Infrastructure Development Specifications

More information

Domain Name Lifecycle Policy

Domain Name Lifecycle Policy 24 July 2014 L8, 10 Queens Rd Melbourne Vic 3004 Australia Powered by A Bombora Technologies Company This document is provided pursuant to the disclaimer provided on the last page. II Classification Public

More information

Domain Name Lifecycle Policy

Domain Name Lifecycle Policy 10 November 2014 Powered by A Bombora Technologies Company This document is provided pursuant to the disclaimer provided on the last page. Classification Public Page II Contents 1 Definitions... 1 2 About

More information

Technical documentation

Technical documentation Technical documentation HTTP Application Programming Interface SMPP specifications Page 1 Contents 1. Introduction... 3 2. HTTP Application Programming Interface... 4 2.1 Introduction... 4 2.2 Submitting

More information

EPP Status Codes: What do they mean, and why should I know?

EPP Status Codes: What do they mean, and why should I know? EPP Status Codes: What do they mean, and why should I know? Extensible Provisioning Protocol (EPP) domain status codes, also called domain name status codes, indicate the status of a domain name registration.

More information

Andrzej Bartosiewicz, NASK. ENUM projects in Poland RIPE47 ENUM BoF

Andrzej Bartosiewicz, NASK. ENUM projects in Poland RIPE47 ENUM BoF Andrzej Bartosiewicz, NASK ENUM projects in Poland RIPE47 ENUM BoF EPP for ENUM EPP BACKGROUND NASK is the admin & tech contact for 8.4.e164.arpa R&D unit State organization NASK follows the guidelines

More information

Domain Name Lifecycle Policy for the TLD.koeln

Domain Name Lifecycle Policy for the TLD.koeln dotkoeln registry NetCologne GmbH Postfach 30 09 33 50779 Köln Domain Name Lifecycle Policy for the TLD.koeln I. Purpose of this document The purpose of this policy is to describe the various states that

More information

First version of the document.

First version of the document. First version of the document. 2.1 Access to web forms... 6 2.2 Menu... 7 2.3 Dashboard... 8 2.4 Domain names... 9 2.4.1 Create domain name... 9 2.4.2 Query domain name details...11 2.4.3 Registrar domain

More information

DOMAIN POLICY VERSION 1.0

DOMAIN POLICY VERSION 1.0 DOMAIN POLICY VERSION 1.0 1. Domain Name Format 1.1 Registry TLD domains can contain the English-language letters A through Z, the digits 0 through 9 and hyphens (LDH -- Letters, Digits, Hyphens). Hyphens

More information

Our server platform consists of Microsoft Windows 2008 servers with SQL Server 2005 which are under 24/24 monitoring.

Our server platform consists of Microsoft Windows 2008 servers with SQL Server 2005 which are under 24/24 monitoring. DomainAPI v2.1 ARCHITECTURE Server platform Our server platform consists of Microsoft Windows 2008 servers with SQL Server 2005 which are under 24/24 monitoring. Application The Register.eu Gateway is

More information

How to Order and Install Odette Certificates. Odette CA Help File and User Manual

How to Order and Install Odette Certificates. Odette CA Help File and User Manual How to Order and Install Odette Certificates Odette CA Help File and User Manual 1 Release date 24.02.2014 Contents Preparation for Ordering an Odette Certificate... 3 Step 1: Prepare the information you

More information

How to Order and Install Odette Certificates. Odette CA Help File and User Manual

How to Order and Install Odette Certificates. Odette CA Help File and User Manual How to Order and Install Odette Certificates Odette CA Help File and User Manual 1 Release date 28.07.2014 Contents Preparation for Ordering an Odette Certificate... 3 Step 1: Prepare the information you

More information

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

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

More information

Creating Custom Nameservers Contents

Creating Custom Nameservers Contents Creating Custom Nameservers Contents Goals... 2 Register Name Servers... 2 Setup Private NameServers in WHM... 4 Adding IP addresses for your name server... 5 Conclusion... 5 Goals This guide will help

More information

Cloud Director User's Guide

Cloud Director User's Guide Cloud Director 1.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition. To check for more recent editions of this

More information

How to Order and Install Odette Certificates. Odette CA Help File and User Manual

How to Order and Install Odette Certificates. Odette CA Help File and User Manual How to Order and Install Odette Certificates Odette CA Help File and User Manual 1 Release date 20.07.2015 Contents Preparation for Ordering an Odette Certificate... 3 Step 1: Prepare the information you

More information

Smart Card Authentication Client. Administrator's Guide

Smart Card Authentication Client. Administrator's Guide Smart Card Authentication Client Administrator's Guide April 2013 www.lexmark.com Contents 2 Contents Overview...3 Configuring Smart Card Authentication Client...4 Configuring printer settings for use

More information

Managing Your Domain Names

Managing Your Domain Names Quick Start Guide Managing Your Domain Names Quick Start Guide Page 1 Quick Start Guide: Managing Your Domain Names Version 2.0 (7/22/2010) Copyright 2010 All rights reserved. Distribution of this work

More information

Rules Of Registration And Delegation Under The Domain Name Regulations

Rules Of Registration And Delegation Under The Domain Name Regulations Rules of Domain Name Registration in ENUM Valid from October 1, 2007 1. INITIAL PROVISIONS 1.1. This document specifies Rules of Registration and delegation of second and lower level Domain Names under

More information

Smart Card Authentication. Administrator's Guide

Smart Card Authentication. Administrator's Guide Smart Card Authentication Administrator's Guide October 2012 www.lexmark.com Contents 2 Contents Overview...4 Configuring the applications...5 Configuring printer settings for use with the applications...5

More information

TERMS AND CONDITIONS I. GENERAL TERMS

TERMS AND CONDITIONS I. GENERAL TERMS TERMS AND CONDITIONS I. GENERAL TERMS 1. Terms and Conditions define the rules for the provision of services by Domeny.pl sp. z o.o. with its registered office in Kraków. 2. Whenever the rest of the Terms

More information

WHMCS LUXCLOUD MODULE

WHMCS LUXCLOUD MODULE èè WHMCS LUXCLOUD MODULE Update: 02.02.2015 Version 2.0 This information is only valid for partners who use the WHMCS module (v2.0 and higher). 1.1 General overview 1.2 Installing the plugin Go to your

More information

OpenSRS Domain Transfers Guide. October 23, 2008

OpenSRS Domain Transfers Guide. October 23, 2008 OpenSRS Domain Transfers Guide October 23, 2008 Table of Contents Introduction...3 About this Document...3 Users and Roles...4 General Transfer Rules...4 Domain Transfers in the Test Environment (Horizon)...4

More information

How to configure the TopCloudXL WHMCS plugin (version 2+) Update: 16-09-2015 Version: 2.2

How to configure the TopCloudXL WHMCS plugin (version 2+) Update: 16-09-2015 Version: 2.2 èè How to configure the TopCloudXL WHMCS plugin (version 2+) Update: 16-09-2015 Version: 2.2 Table of Contents 1. General overview... 3 1.1. Installing the plugin... 3 1.2. Testing the plugin with the

More information

October 11, 2013 NEUSTAR REGISTRAR REFERENCE GUIDE

October 11, 2013 NEUSTAR REGISTRAR REFERENCE GUIDE October 11, 2013 NEUSTAR REGISTRAR REFERENCE GUIDE This document is for informational purposes only. NEUSTAR MAKES NO WARRANTIES, EXPRESS, IMPLIED, OR STATUTORY, AS TO THE INFORMATION IN THIS DOCUMENT.

More information

Registration Guidelines. for.be

Registration Guidelines. for.be Registration Guidelines for.be Version 15.1 Part III: Registrar site 28 januari 2015 1 TABLE OF CONTENTS Part III: WEB interface TABLE OF CONTENTS... 2 MY REGISTRATIONS... 4 LOG IN... 4 GENERAL FORMAT...

More information

OpenSRS Quickstart Guide April 15, 2011

OpenSRS Quickstart Guide April 15, 2011 OpenSRS Quickstart Guide April 15, 2011 Table of Contents Welcome to OpenSRS...3 Overview...3 Before You Begin...3 Our Two Environments: Live and Test...3 The OpenSRS Test Environment...4 The OpenSRS Live

More information

MAIL1CLICK API - rel 1.35

MAIL1CLICK API - rel 1.35 hqimawhctmslulpnaq//vkauukqmommgqfedthrmvorodqx6oxyvsummkflyntq/ 2vOreTmgl8JsMty6tpoJ5CjkykDGR9mPg79Ggh1BRdSiqSSQR17oudKwi1pJbAmk MFUkoVTtzGEfEAfOV0Pfi1af+ntJawYxOaxmHZvtyG9iojsQjOrA4S+3i4K4lpj4 A/tj7nrDfL47r2cQ83JszWsQVe2CqTLLQz8saXfGoGJILREPFoF/uPS0sg5TyKYJ

More information

Documentation for the SMSWay API v1.5. API for SMSWay Gateway. Documentation for the SMSWay API v1.5. 2011 www.smsway.eu

Documentation for the SMSWay API v1.5. API for SMSWay Gateway. Documentation for the SMSWay API v1.5. 2011 www.smsway.eu API for SMSWay Gateway Table of contents 1. Introduction... 3 1.1 How to start... 3 2. Single SMS Message sending... 3 3. Callback procedure delivery confirmation status... 4 4. Checking the account balance...

More information

SCOPTEL WITH ACTIVE DIRECTORY USER DOCUMENTATION

SCOPTEL WITH ACTIVE DIRECTORY USER DOCUMENTATION SCOPTEL WITH ACTIVE DIRECTORY USER DOCUMENTATION Table of content ScopTel with Active Directory... 3 Software Features... 3 Software Compatibility... 3 Requirements... 3 ScopTel Configuration... 4 Prerequisites...

More information

Domain Registration/Domain Transfer/Domain Renewal Contract TERMS OF SERVICE

Domain Registration/Domain Transfer/Domain Renewal Contract TERMS OF SERVICE Domain Registration/Domain Transfer/Domain Renewal Contract TERMS OF SERVICE This contract is between Enter.Net, Inc., located at 815 N 12th Street, Allentown PA 18102, ("Enter.Net") and you, Enter.Net

More information

End User FAQ. Registration/Payment. Which TLDs can I buy? How do I search for domains?

End User FAQ. Registration/Payment. Which TLDs can I buy? How do I search for domains? End User FAQ Registration/Payment Which TLDs can I buy? Your service provider may offer sales, support, and management for the following gtlds and cctlds:.com.net.org.info.biz.tel.asia.au.be.bz.ca.cc.co.de.dk.es.eu.in.it.me.mobi.name.nl.tv.co.uk.me.uk.org.uk.us.ws

More information

How to Transfer Domain Names and Get an Authorization Code

How to Transfer Domain Names and Get an Authorization Code The Insider s Guide to Domain Name Transfers The Insider s Guide to Domain Name Transfers Version 1.0 (9/29/2011) Copyright 2011. All rights reserved. Distribution of this work or derivative of this work

More information

Rules of Domain Names Registration under cctld.cz

Rules of Domain Names Registration under cctld.cz Rules of Domain Names Registration under cctld.cz In effect as of 1 January 2010 1. INTRODUCTORY PROVISIONS 1.1. This document determines the rules for the registration and delegation of the second-level

More information

Password Reset Server User Guide

Password Reset Server User Guide Table of Contents Getting Started... 3 Product Overview... 3 Installation... 3 Accessing Password Reset Server... 3 Terminology... 4 Password Sources... 5 Creating a new Password Source... 5 Security Policies...

More information

Parked Pages Program. January 9, 2012

Parked Pages Program. January 9, 2012 Parked Pages Program January 9, 2012 Parked Pages Program The OpenSRS Parked Pages Program is an excellent way for you to generate revenue from domains that are currently not in use. When the Parked Pages

More information

Contents. 1 VPN Remote Access Service

Contents. 1 VPN Remote Access Service Contents 1 VPN Remote Access Service Record of Revisions Reference numbers are shown at the bottom left corner on the back cover of each manual. Date Reference No. Revised Contents February, 2015 1075NE0

More information

Key-Systems Registrar Plug-in PBA Configuration Guide Revision 1.1

Key-Systems Registrar Plug-in PBA Configuration Guide Revision 1.1 Key-Systems Registrar Plug-in PBA Configuration Guide Revision 1.1 1999-2012 1/13 Parallels IP Holdings GmbH. Vordergasse 59 CH8200 Schaffhausen Switzerland Tel: + 41 526320 411 Fax: + 41 52672 2010 www.parallels.com

More information

PaperCut Payment Gateway Module PayPal Website Payments Standard Quick Start Guide

PaperCut Payment Gateway Module PayPal Website Payments Standard Quick Start Guide PaperCut Payment Gateway Module PayPal Website Payments Standard Quick Start Guide This guide is designed to supplement the Payment Gateway Module documentation and provides a guide to installing, setting

More information

EMMA Application v. 4.9 User Manual

EMMA Application v. 4.9 User Manual EMMA Application v. 4.9 User Manual Prepared by: HP/DMDC 1600 N. Beauregard Street Alexandria, VA 22311 Abstract This guide describes how to use the EMMA system, which allows users to provision for required

More information

Cite My Data M2M Service Technical Description

Cite My Data M2M Service Technical Description Cite My Data M2M Service Technical Description 1 Introduction... 2 2 How Does it Work?... 2 2.1 Integration with the Global DOI System... 2 2.2 Minting DOIs... 2 2.3 DOI Resolution... 3 3 Cite My Data

More information

IX Web Hosting. Billing Manual. July 31, 2012

IX Web Hosting. Billing Manual. July 31, 2012 IX Web Hosting Billing Manual July 31, 2012 Table of Contents 1 Introduction... 3 2 Billing Profile... 3 3 Domain Points... 4 4 Accessing the Billing and Administration System... 5 4.1 The My Products

More information

DOMAIN NAME TERMS. Jonathan Neale jonathann@sempervox.net

DOMAIN NAME TERMS. Jonathan Neale jonathann@sempervox.net DOMAIN NAME TERMS This policy is subject to change, so please check regularly for updates. This policy is in addition to Sempervox Terms & Conditions. Sempervox is a trading style of Signum Corporate Communications

More information

How To Enable A Websphere To Communicate With Ssl On An Ipad From Aaya One X Portal 1.1.3 On A Pc Or Macbook Or Ipad (For Acedo) On A Network With A Password Protected (

How To Enable A Websphere To Communicate With Ssl On An Ipad From Aaya One X Portal 1.1.3 On A Pc Or Macbook Or Ipad (For Acedo) On A Network With A Password Protected ( Avaya one X Portal 1.1.3 Lightweight Directory Access Protocol (LDAP) over Secure Socket Layer (SSL) Configuration This document provides configuration steps for Avaya one X Portal s 1.1.3 communication

More information

Exchange 2013 & Related Services. Admin Guide

Exchange 2013 & Related Services. Admin Guide Exchange 2013 & Related Services Admin Guide Document Revision Date: Oct. 8, 2014 Exchange 2013 Admin Guide i Contents Introduction... 3 Get Started with Exchange... 3 Other Menu Options & Subscriptions...

More information

Setup guide. TELUS AD Sync

Setup guide. TELUS AD Sync Setup guide TELUS AD Sync June 2013 TELUS AD Sync User Guide. The AD Sync Tool must be downloaded onto your organization s Domain Controller. Please call TELUS at 1 877 846 4456 to have this feature provisioned

More information

Setting Up Scan to SMB on TaskALFA series MFP s.

Setting Up Scan to SMB on TaskALFA series MFP s. Setting Up Scan to SMB on TaskALFA series MFP s. There are three steps necessary to set up a new Scan to SMB function button on the TaskALFA series color MFP. 1. A folder must be created on the PC and

More information

SIM Configuration Guide. February 2015 Version 1 Document Reference: 8127

SIM Configuration Guide. February 2015 Version 1 Document Reference: 8127 SIM Configuration Guide February 2015 Version 1 Document Reference: 8127 Contents 1 SIM APN Settings... 3 2 SIM MMS Settings... 3 3 SIM Email Settings... 4 4 SIM SMS Settings... 5 5 SIM SMS Charging...

More information

Customer Release Notes for Xerox Integrated Fiery Color Server for the Xerox Color C75 Press, version 1.0

Customer Release Notes for Xerox Integrated Fiery Color Server for the Xerox Color C75 Press, version 1.0 Customer Release Notes for Xerox Integrated Fiery Color Server for the Xerox Color C75 Press, version 1.0 This document contains important information about this release. Be sure to provide this information

More information

EFFECTIVE AS OF AUGUST 15, 2015

EFFECTIVE AS OF AUGUST 15, 2015 EFFECTIVE AS OF AUGUST 15, 2015.LAT DOMAIN NAMES GENERAL POLICY Effective as of January 30, 2015. The domain name registration under the gtld.lat, is delegated to Federación de Latinoamérica y el Caribe

More information

Policy on Transfer of Registrations between Registrars Takes effect 31 January 2015

Policy on Transfer of Registrations between Registrars Takes effect 31 January 2015 Policy on Transfer of Registrations between Registrars Takes effect 31 January 2015 Revision Adopted 25 August 2011 Effective 31 January 2015 A. Holder-Authorized Transfers 1. Registrar Requirements Registered

More information

This section will describe the different functions that can be used by the Interspire Email Marketer XML API.

This section will describe the different functions that can be used by the Interspire Email Marketer XML API. Introduction The Interspire Email Marketer XML API is a remotely accessible service API to allow Interspire Email Marketer users to run many of the Interspire Email Marketer API functions using XML requests.

More information

Deployment Guide: Transparent Mode

Deployment Guide: Transparent Mode Deployment Guide: Transparent Mode March 15, 2007 Deployment and Task Overview Description Follow the tasks in this guide to deploy the appliance as a transparent-firewall device on your network. This

More information

Contents CHAPTER 1 IMail Utilities

Contents CHAPTER 1 IMail Utilities Contents CHAPTER 1 IMail Utilities CHAPTER 2 Collaboration Duplicate Entry Remover... 2 CHAPTER 3 Disk Space Usage Reporter... 3 CHAPTER 4 Forward Finder... 4 CHAPTER 5 IMAP Copy Utility... 5 About IMAP

More information

Rules of Domain Names Registration under cctld.cz

Rules of Domain Names Registration under cctld.cz Rules of Domain Names Registration under cctld.cz In effect as of June 1, 2012 1. INTRODUCTORY PROVISIONS 1.1. This document determines the rules for the registration and delegation of the second-level

More information

EPP 1.0 Gateway Resource Guide

EPP 1.0 Gateway Resource Guide Resource Guide REALTIME cctld EPP 1.0 SOLUTION HEXONET s Platform is the first of its kind industry wide. Instead of repeated and costly implementation, as well as, maintenance for arduous individual connections

More information

C u s t o m e r S u p p o r t

C u s t o m e r S u p p o r t C u s t o m e r S u p p o r t www.fasthosts.co.uk Transferring Domains This guide will show you: How to transfer.uk,.eu and international domain names Tips and tricks for making the process as smooth as

More information

COMMANDS 1 Overview... 1 Default Commands... 2 Creating a Script from a Command... 10 Document Revision History... 10

COMMANDS 1 Overview... 1 Default Commands... 2 Creating a Script from a Command... 10 Document Revision History... 10 LabTech Commands COMMANDS 1 Overview... 1 Default Commands... 2 Creating a Script from a Command... 10 Document Revision History... 10 Overview Commands in the LabTech Control Center send specific instructions

More information

Software Version 1.0 ConnectKey TM Share to Cloud April 2013. Xerox ConnectKey Share to Cloud User / Administrator s Guide

Software Version 1.0 ConnectKey TM Share to Cloud April 2013. Xerox ConnectKey Share to Cloud User / Administrator s Guide Software Version 1.0 ConnectKey TM Share to Cloud April 2013 Xerox ConnectKey Share to Cloud User / Administrator s Guide 2013 Xerox Corporation. All rights reserved. Xerox, Xerox and Design, and Xerox

More information

Exchange 2010 PKI Configuration Guide

Exchange 2010 PKI Configuration Guide Exchange 2010 PKI Configuration Guide Overview 1. Summary 2. Environment 3. Configuration a) Active Directory Configuration b) CA Configuration c) Exchange Server IIS Configuration d) Exchange Configuration

More information

File Transfer Protocol System (FTPS)

File Transfer Protocol System (FTPS) File Transfer Protocol System (FTPS) October 21, 2011 1 Table of Contents Introduction... 3 Downloading FileZilla.. 4 Determining Your User Name and Password. 8 Configuring FileZilla 9 Support Information.

More information

Registrar Ramp Up Process. Prepared by Afilias

Registrar Ramp Up Process. Prepared by Afilias Registrar Ramp Up Process Prepared by Afilias December 2013 Contents Introduction... 2 Get Started By Having Someone Contact You... 2 Become a Registrar... 3 Step One Business and Legal Process... 3 Step

More information

Parallels Plesk Panel 11 for your Linux server

Parallels Plesk Panel 11 for your Linux server Getting Started Guide Parallels Plesk Panel 11 for your Linux server Getting Started Guide Page 1 Getting Started Guide: Parallels Plesk Panel 11, Linux Server Version 1.1 (11.1.2012) Copyright 2012. All

More information

HP BladeSystem c-class Virtual Connect Support Utility User Guide

HP BladeSystem c-class Virtual Connect Support Utility User Guide HP BladeSystem c-class Virtual Connect Support Utility User Guide Version 1.2.0 Part Number 482172-001 February 2008 (First Edition) Copyright 2008 Hewlett-Packard Development Company, L.P. The information

More information

Redelegate your domain to Office 365

Redelegate your domain to Office 365 Redelegate your domain to Office 365 If your company already has a vanity domain, as a global administrator, you can configure it to work with your Microsoft Office 365. This process is referred to as

More information

Activating the Realtime Register module within WHMCS. Unzip the Realtime Register module and upload it to your root directory

Activating the Realtime Register module within WHMCS. Unzip the Realtime Register module and upload it to your root directory WHMCS set up guide This guide helps you setting up your WHMCS preferences to enable a strong and effective connection between WHMCS and Realtime Register. To install the WHMCS module you need to have administrator

More information

Installation and Configuration Guide

Installation and Configuration Guide Installation and Configuration Guide BlackBerry Resource Kit for BlackBerry Enterprise Service 10 Version 10.2 Published: 2015-11-12 SWD-20151112124827386 Contents Overview: BlackBerry Enterprise Service

More information

Matrix Technical Support Mailer 167 NAVAN CNX200 PPTP VPN with Windows Client

Matrix Technical Support Mailer 167 NAVAN CNX200 PPTP VPN with Windows Client Matrix Technical Support Mailer 167 NAVAN CNX200 PPTP VPN with Windows Client 22/07/2014 Dear Friends, This mailer helps you in understanding and configuring PPTP VPN of Matrix NAVAN CNX200 with Windows

More information

Emails sent to the FaxFinder fax server must meet the following criteria to be processed for sending as a fax:

Emails sent to the FaxFinder fax server must meet the following criteria to be processed for sending as a fax: FaxFinder FFx30 T.37 Store & Forward Fax (T.37) Introduction The FaxFinder implements T.37 Store and Forward Fax (RFC2304) to convert emails into facsimile transmissions. The FaxFinder fax server accepts

More information

Managing Identities and Admin Access

Managing Identities and Admin Access CHAPTER 4 This chapter describes how Cisco Identity Services Engine (ISE) manages its network identities and access to its resources using role-based access control policies, permissions, and settings.

More information

Content Filtering Client Policy & Reporting Administrator s Guide

Content Filtering Client Policy & Reporting Administrator s Guide Content Filtering Client Policy & Reporting Administrator s Guide Notes, Cautions, and Warnings NOTE: A NOTE indicates important information that helps you make better use of your system. CAUTION: A CAUTION

More information

HP Device Manager 4.7

HP Device Manager 4.7 Technical white paper HP Device Manager 4.7 LDAP Troubleshooting Guide Table of contents Introduction... 2 HPDM LDAP-related context and background... 2 LDAP in HPDM... 2 Full domain account name login...

More information

Exchange 2010 & Related Services. Admin Guide

Exchange 2010 & Related Services. Admin Guide Exchange 2010 & Related Services Admin Guide Document Revision Date: Oct. 8, 2014 Exchange Admin Guide i Contents Introduction... 3 Get Started with Exchange... 3 Other Menu Options & Subscriptions...

More information

API Operational Test and Evaluation Platform (API OT&E platform) User manual. Version 2.0

API Operational Test and Evaluation Platform (API OT&E platform) User manual. Version 2.0 API Operational Test and Evaluation Platform (API OT&E platform) User manual Version 2.0 22 november 2013 TABLE OF CONTENTS 1. Introduction 3 1.1. Overview of the API OT&E platform 3 1.2. The intended

More information

ProSoftMod Commission Report Documentation

ProSoftMod Commission Report Documentation ProSoftMod Commission Report Documentation The purpose of these modifications is to produce commission reports by salesman. The reports can be done by total sales or gross profit. The can also by produced

More information

IBM WebSphere Application Server Version 7.0

IBM WebSphere Application Server Version 7.0 IBM WebSphere Application Server Version 7.0 Centralized Installation Manager for IBM WebSphere Application Server Network Deployment Version 7.0 Note: Before using this information, be sure to read the

More information

THIRD-LEVEL DOMAIN NAMES REGISTRATION POLICY

THIRD-LEVEL DOMAIN NAMES REGISTRATION POLICY Foundation for Assistance for Internet Technologies and Infrastructure Development Effective April 21, 2015 Version 1.0 THIRD-LEVEL DOMAIN NAMES REGISTRATION POLICY This Third-Level Domain Names Registration

More information

VIDA ADMIN HELP CONTENTS

VIDA ADMIN HELP CONTENTS CONTENTS 1 INTRODUCTION... 4 2 OVERVIEW FOR NEW VIDA ADMIN USERS... 5 2.1 Company... 5 2.2 User... 5 2.3 VIDA All-in-one... 5 2.4 VIDA on Web... 5 2.5 Subscription... 6 2.5.1 Subscription to VIDA All-in-one...

More information

Bitrix Site Manager 4.0. Quick Start Guide to Newsletters and Subscriptions

Bitrix Site Manager 4.0. Quick Start Guide to Newsletters and Subscriptions Bitrix Site Manager 4.0 Quick Start Guide to Newsletters and Subscriptions Contents PREFACE...3 CONFIGURING THE MODULE...4 SETTING UP FOR MANUAL SENDING E-MAIL MESSAGES...6 Creating a newsletter...6 Providing

More information

User Migration Tool. Note. Staging Guide for Cisco Unified ICM/Contact Center Enterprise & Hosted Release 9.0(1) 1

User Migration Tool. Note. Staging Guide for Cisco Unified ICM/Contact Center Enterprise & Hosted Release 9.0(1) 1 The (UMT): Is a stand-alone Windows command-line application that performs migration in the granularity of a Unified ICM instance. It migrates only Unified ICM AD user accounts (config/setup and supervisors)

More information

MULTIFUNCTIONAL DIGITAL SYSTEMS. TopAccess Guide

MULTIFUNCTIONAL DIGITAL SYSTEMS. TopAccess Guide MULTIFUNCTIONAL DIGITAL SYSTEMS TopAccess Guide 0 TOSHIBA TEC CORPORATION All rights reserved Under the copyright laws, this manual cannot be reproduced in any form without prior written permission of

More information

Installing and Configuring vcloud Connector

Installing and Configuring vcloud Connector Installing and Configuring vcloud Connector vcloud Connector 2.0.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new

More information

ISNIC - Internet á Íslandi Domain Registration Rules

ISNIC - Internet á Íslandi Domain Registration Rules Chapter I - General ISNIC - Internet á Íslandi Domain Registration Rules Article 1 Internet á Íslandi hf., ISNIC administers the country code top-level domain (cctld).is in accordance with an agreement

More information

NASK.PL Registry & Registrars. www.dns.pl email: partner@dns.pl

NASK.PL Registry & Registrars. www.dns.pl email: partner@dns.pl NASK.PL Registry & Registrars www.dns.pl email: partner@dns.pl AGENDA.PL REGISTRAR PROGRAM before and now Registration process Prices and discounts for Registrars IDNs States of the domain Services only

More information

Advanced HTTP API Documentation

Advanced HTTP API Documentation Advanced HTTP API Documentation Page 1 of 8 Introduction The SMS Broadcast Advanced HTTP API can be used to integrate SMS messaging into your own systems. This API allows for tracking of SMS messages and

More information

Wakefield Council Secure email and file transfer User guide for customers, partners and agencies

Wakefield Council Secure email and file transfer User guide for customers, partners and agencies Wakefield Council Secure email and file transfer User guide for customers, partners and agencies The nature of the work the council carries out means that we often deal with information that is sensitive

More information

LDAP User Service Guide 30 June 2006

LDAP User Service Guide 30 June 2006 LDAP User Service Guide 30 June 2006 This documents usage of the LDAP User Service for NiagaraAX version 3.1. INSTALLATION... 2 PALETTE... 3 LDAPUSERSERVICE... 3 ACTIVEDIRECTORYSERVICE... 3 KEY CONCEPTS...

More information

Global Registry Services Registrar Frequently Asked Questions (FAQ) for TLDs using Afilias Technology

Global Registry Services Registrar Frequently Asked Questions (FAQ) for TLDs using Afilias Technology Global Registry Services Registrar Frequently Asked Questions (FAQ) for TLDs using Afilias Technology Prepared by Afilias November 2013 Table of Contents Foreword... 1 Non-Technical... 1 Accreditation,

More information

Domain Name Expiry Renewal and Deletion

Domain Name Expiry Renewal and Deletion Domain Name Expiry Renewal and Deletion Copyright 2010 Supreme Council of Information and Communication Technology (ictqatar) Table of Contents 1. Grace Period... 4 2. Domain Name Deletion Registrant Request

More information

Syra Reseller System

Syra Reseller System Syra Reseller System Reseller Guide Syra Reseller Guide 1 Copyright 2013 Syra Networks Welcome On behalf of the entire team at Syra Networks, welcome to your new reseller account. The Syra Reseller System

More information

USER GUIDE. Lightweight Directory Access Protocol (LDAP) Schoolwires Centricity

USER GUIDE. Lightweight Directory Access Protocol (LDAP) Schoolwires Centricity USER GUIDE Lightweight Directory Access Protocol () Schoolwires Centricity TABLE OF CONTENTS Introduction... 1 Audience and Objectives... 1 Overview... 1 Servers Supported by Centricity... 1 Benefits of

More information

Technical Integration Guide

Technical Integration Guide TECHNICAL INTEGRATION GUIDE February 25th, 2013 1 Technical Integration Guide - Version 2.7 - February 25th, 2013-1 - TECHNICAL INTEGRATION GUIDE February 25th, 2013 2 Table of content 1. Preface... 5

More information

Web Services Credit Card Errors A Troubleshooter

Web Services Credit Card Errors A Troubleshooter Web Services Credit Card Errors A Troubleshooter January 2012 This manual and accompanying electronic media are proprietary products of Optimal Payments plc. They are to be used only by licensed users

More information

Getting Started With Your Virtual Dedicated Server. Getting Started Guide

Getting Started With Your Virtual Dedicated Server. Getting Started Guide Getting Started Guide Getting Started With Your Virtual Dedicated Server Setting up and hosting a domain on your Linux Virtual Dedicated Server using Plesk 8.0. Getting Started with Your Virtual Dedicated

More information