PHP code example of space-invoices / space-invoices-php

1. Go to this page and download the library: Download space-invoices/space-invoices-php library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

space-invoices / space-invoices-php example snippets



 php
Spaceinvoices\Spaceinvoices::setAccessToken('TOKEN');
 php
$accountId = 'ACCOUNT_ID';

$create = Spaceinvoices\Organizations::create($accountId, array(
  "name" => "SpaceX",
  "country" => "USA"
));

var_dump($create);