L

A C D E G H I J K L M N P Q R S T U V W

  • login
    Login with Username & Password   Requires (mandatory): username Joker.com username (email address) password Joker.com password   Returns: Auth-SID Authenticated Session ID, must be provided with any other request (parameter auth-sid) List of TLDs List ...
  • logout
      Returns: nothing Used to forcibly close (terminate) a session. The session identified by Auth-SID may not be used anymore to send requests. Normally not required ...
  • List domains of a customer
    #!/usr/bin/perl use LWP::UserAgent; use Data::Dumper; my $dmapiURL = "https://dmapi.joker.com/request"; my $ua = LWP::UserAgent-> new; my $req = HTTP::Request-> new(GET => ...
  • List domains to expire next month
    Needs: Class::Date and Date::Parse from CPAN! #!/usr/bin/perl use LWP::UserAgent; use Data::Dumper; use Class::Date qw(:errors date localdate gmdate now -DateParse); my $dmapiURL = "https://dmapi.joker.com/request"; ...
  • List domains of a customer
      <?php //sends HTTP request using CURL function query_host($conn_server, $params = "", $get_header = false) { $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $conn_server.$params); ...
  • Language code
    @language - one of the following language codes Languagecode Language AFR Afrikaans ALB Albanian ARA Arabic ARM Armenian AZE Azerbaijani BAQ Basque BUL Bulgarian BUR Burmese CAT Catalan CHI Chinese CZE Czech DAN Danish DUT Dutch ENG English EST Estonian FAO Faroese FIN Finnish FRE French GEO Georgian GER German HEB Hebrew HIN Hindi HUN Hungarian ICE Icelandic ITA Italian JPN Japanese KOR Korean KUR Kurdish LAO Lao LAV Latvian LIT Lithuanian MAC Macedonian MAL Malayalm NEP Nepali NOR Norwegian PER Persian POL Polish POR Portuguese RUM Romanian RUS Russian SAN Sanskirt SCC Serbian SCR Croatian SLO Slovak SLV Slovenian SPA Spanish SWA Swahili SWE Swedish SYR Syriac TAM Tamil THA Thai TIB Tibetan TUR Turkish UKR Ukrainian URD Urdu UZB Uzbek VIE Vietnamese ZHO Chinese ...
  • List domains
    Introduction list domains With this request you can get a list (lexicographically sorted) of all the domains, you have currently registered at joker.com. You have to ...
  • Lock a domain
    Introduction lock domain With this request you can lock a domain in order to prevent fraudulent transfer attempts. If a domain is locked, each transfer-request from a foreign registrar ...
  • List of currently working requests
    Here you will find the list of the currently working requests. there are 2 types of status for each request. available not yet implemented All requests marked with ...
  • List a dns-configuration
    Introduction With this request you can get a listing of a current zonefile. Request fields mailsubject: list dns-config [your reference id] definition of this request   request-field valid values required domains0 @fqdn yes Example 1: list dns-config subject: ...
  • Login and list your domains
    #!/usr/bin/env python import requests dmapiURL = 'https://dmapi.ote.joker.com' dmapiUser = 'username' dmapiPassword = 'password' def main(): loginResponse = login(dmapiUser,dmapiPassword) print("Login: Status-Code:", loginResponse.header['Status-Code']) ...
  • Let's Encrypt Support
      Support for automating Let's Encrypt SSL Certificates   Joker.com provides a simple tool to automate the usage of Let's Encrypt certificates. N.B.: We will support this solution also ...
  • Login and list all A and CNAME records
    #!/usr/bin/env python import requests dmapiURL = 'https://dmapi.joker.com' dmapiUser = 'username' dmapiPassword = 'password' def main(): loginResponse = login(dmapiUser,dmapiPassword) #print("Login: Status-Code:", loginResponse.header['Status-Code']) ...