1. Test your credentials on the sandbox environment

Your credentials are in test mode. To switch to production mode, please send an email to activate your account in production mode.

curl 'https://api.printoclock.com/login_check' \
  -H 'Content-Type: application/json' \
  -X POST \
  -d '{"username":"yourusername","password":"yourpassword"}'

This should return a token to be used in all your future API requests.

2. Example of JavaScript code

Here is an example of a JavaScript connection with the Printoclock API:

const fetch = require('node-fetch');

(async () => {
  try {
    const response = await fetch('https://api.printoclock.com/login_check', {
      method: 'POST',
      headers: new Headers({
        'Content-Type': 'application/json',
      }),
      body: JSON.stringify({
        username: 'yourusername',
        password: 'yourpassword',
      }),
    });

    if (!response.ok) {
      throw new Error(`HTTP error! status: ${response.status}`);
    }

    const data = await response.json();
    console.log('Token:', data.token);
  } catch (error) {
    console.error('Error:', error);
  }
})();

3. Write the rest of the step-by-step tutorial :)

TODO

Checkout our demo code, that’s still the best option to understand how everything works.