Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 648 Bytes

README.md

File metadata and controls

27 lines (18 loc) · 648 Bytes

Oxxa API (PHP)

Use the Oxxa API in PHP.

Status

Build Status

Installation

composer require ben221199/oxxa-api

Use

$username = 'myUsername'; // Your API username
$password = 'myPassword'; // Your API password
$useMD5 = true; // When true, password is send in its MD5 form.
$isTesting = false; // When true, payment wil not occur

$oxxaApi = new \Ben221199\Oxxa\API\OxxaAPI('https://api.oxxa.com',$username,$password,$useMD5,$isTesting);

$xml = $oxxaApi->DOMAIN_CHECK([
	'sld'	=> 'myDomain',
	'tld'	=> 'com',
]);