1
26

Call the service API

To execute an action on signmii.com, you simply send an HTTP GET request to the address https://signmii.com/api followed by the name of the action and a series of parameters:

https://signmii.com/api/action?login=abcdef&password=ABCDEF

You MUST use an HTTPS connection to insure that your identification code and your password remain confidential. If you don't, the request returns an error HTTP 301 Moved Permanently. The certificate of the server was signed by Let's Encrypt.

action is either getcredit, getsignmii or checksignmii and login and password are your identification code and your password. Depending on the action, more parameters might be necessary, like a digital digest for encoding a signmii.

Your identification code in 6 small letters is displayed in bold on your home page. Your password was posted to your email address. Click on the link To change your password on your home page or on the link If you have forgotten your password on the identification page to get a new one.

Try entering https://signmii.com/api/getcredit?login=abcdef&password=ABCDEF in the address bar of your navigator replacing abcdef and ABCDEF by your identification code and your password.

IMPORTANT: Remember to clear the browser's history after testing a URL with your identification code and your password.

API

To call signmii.com by program, you need a function able to send an HTTP GET request to a server and to collect the returned data. Download the file sendhttp.php and copy it in the space of your own application.

The file sendhttp.php defines the functions sendhttp, sendget and sendpost. To dialog with signmii.com, you will use the sendget function.

Read the page sendhttp of the documentation on iZend for more technical details.

sendget
SYNOPSIS

sendget($url, $args)

DESCRIPTION

sendget sends a GET request to an HTTP server at the address specified by $url with the parameters in $args.

$url is a string of characters with the format https://signmii.com/api/action where action designates the requested function such as getcredit, getsignmii or checksignmii.

$args is an array containing the list of values of the parameters of the called function such as array( 'login' => 'abcdef', 'password' => 'ABCDEF' ... ).

sendget returns an array containing the HTTP code, the header and the body of the document returned by the server or false in case of error.

EXAMPLE

Assuming you have saved the file sendhttp.php in the current directory, run PHP in interactive mode, load the sendget function and call it with the URL https://signmii.com/api/getcredit and an array containing your identification code and your password in argument:

$ php -a
php > require_once 'sendhttp.php';
php > $r=sendget('https://signmii.com/api/getcredit', array('login' => 'abcdef', 'password' => 'ABCDEF'));
php > echo $r[0] == 200 ? $r[2] : 'HTTP ERROR ' . $r[0];
5
php > quit
SEE ALSO

Check your credit, Get a signmii and Check a signmii

Comments

Your comment:
[p] [b] [i] [u] [s] [quote] [pre] [br] [code] [url] [email] strip help 2000

Enter a maximum of 2000 characters.
Improve the presentation of your text with the following formatting tags:
[p]paragraph[/p], [b]bold[/b], [i]italics[/i], [u]underline[/u], [s]strike[/s], [quote]citation[/quote], [pre]as is[/pre], [br]line break,
[url]http://www.izend.org[/url], [url=http://www.izend.org]site[/url], [email]izend@izend.org[/email], [email=izend@izend.org]izend[/email],
[code]commande[/code], [code=langage]code source en c, java, php, html, javascript, xml, css, sql, bash, dos, make, etc.[/code].