apistax/client

Secure and reliable APIs for your common business needs.

1.0.0 2022-10-10 13:56 UTC

This package is auto-updated.

Last update: 2024-04-10 17:04:33 UTC


README

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.