/client-php

A complete PHP client implementation for the APIstax platform.

Primary LanguagePHPApache License 2.0Apache-2.0

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.