Skip to content

A complete PHP client implementation for the APIstax platform.

License

Notifications You must be signed in to change notification settings

APIstax/client-php

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

APIstax PHP Client

Latest Version License

APIstax PHP client is a complete PHP client implementation for the APIstax platform.

Usage

Install the latest version:

composer require 'apistax/client'

Get your APIstax API key here.

Initialise an APIstaxClient and start using it.

<?php

$config = new \APIstax\Configuration();
$config->setApiKey("API_KEY");

$client = new \APIstax\APIstaxClient($config);

$payload = new \APIstax\Models\VatVerificationPayload();
$payload->setVatId("VAT_ID");

$result = $this->client->verifyVatId($payload);

The further information and documentation about the APIs can be found on APIstax documentation page.