Skip to content

inserveit/routit-api-php

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Requirements

PHP Version Require

Status

workflow Latest Stable Version Latest Unstable Version License

About

A PHP Wrapper for the RoutIT API

Installation

composer require inserve/routit-api-php

Usage example

<?php

use Inserve\RoutITAPI\RoutITAPIClient;

require 'vendor/autoload.php';

$apiClient = new RoutITAPIClient(
    baseUri: 'https://service.grexx.today'
);

$apiClient->configure(
    'username',
    'password',
    'interfaces/routit/id'
);

$result = $apiClient->getCustomerData();