Download the PHP package los/mundiapi without Composer

On this page you can find all versions of the php package los/mundiapi. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package mundiapi

Getting started

Mundipagg API

How to Build

The generated code has dependencies over external libraries like UniRest. These dependencies are defined in the file that comes with the SDK. To resolve these dependencies, we use the Composer package manager which requires PHP greater than 5.3.2 installed in your system. Visit https://getcomposer.org/download/ to download the installer file for Composer and run it in your system. Open command prompt and type . This should display the current version of the Composer installed if the installation was successful.

Building SDK - Step 1

[For Windows Users Only] Configuring CURL Certificate Path in php.ini

CURL used to include a list of accepted CAs, but no longer bundles ANY CA certs. So by default it will reject all SSL certificates as unverifiable. You will have to get your CA's cert and point curl at it. The steps are as follows:

  1. Download the certificate bundle (.pem file) from https://curl.haxx.se/docs/caextract.html on to your system.
  2. Add curl.cainfo = "PATH_TO/cacert.pem" to your php.ini file located in your php installation. “PATH_TO” must be an absolute path containing the .pem file.

How to Use

The following section explains how to use the MundiAPI library in a new project.

1. Open Project in an IDE

Open an IDE for PHP like PhpStorm. The basic workflow presented here is also applicable if you prefer using a different editor or IDE.

Open project in PHPStorm - Step 1

Click on in PhpStorm to browse to your generated SDK directory and then click .

Open project in PHPStorm - Step 2

2. Add a new Test Project

Create a new directory by right clicking on the solution name as shown below:

Add a new project in PHPStorm - Step 1

Name the directory as "test"

Add a new project in PHPStorm - Step 2

Add a PHP file to this project

Add a new project in PHPStorm - Step 3

Name it "testSDK"

Add a new project in PHPStorm - Step 4

Depending on your project setup, you might need to include composer's autoloader in your PHP code to enable auto loading of classes.

It is important that the path inside require_once correctly points to the file inside the vendor directory created during dependency installations.

Add a new project in PHPStorm - Step 4

After this you can add code to initialize the client library and acquire the instance of a Controller class. Sample code to initialize the client library and using controller methods is given in the subsequent sections.

3. Run the Test Project

To run your project you must set the Interpreter for your project. Interpreter is the PHP engine installed on your computer.

Open from menu.

Run Test Project - Step 1

Select from within

Run Test Project - Step 2

Browse for Interpreters near the option and choose your interpreter.

Run Test Project - Step 3

Once the interpreter is selected, click

Run Test Project - Step 4

To run your project, right click on your PHP file inside your Test project and click on

Run Test Project - Step 5

How to Test

Unit tests in this SDK can be run using PHPUnit.

  1. First install the dependencies using composer including the require-dev dependencies.
  2. Run vendor\bin\phpunit --verbose from commandline to execute tests. If you have installed PHPUnit globally, run tests using phpunit --verbose instead.

You can change the PHPUnit test configuration in the phpunit.xml file.

Initialization

Authentication

In order to setup authentication and initialization of the API client, you need the following information.

Parameter Description
basicAuthUserName The username to use with basic authentication
basicAuthPassword The password to use with basic authentication

API client can be initialized as following.

Class Reference

List of Controllers

Class: ChargesController

Get singleton instance

The singleton instance of the class can be accessed from the API Client.

Method: getCharge

Get a charge from its id

Parameters

Parameter Tags Description
chargeId Charge id

Example Usage

Method: retryCharge

Retries a charge

Parameters

Parameter Tags Description
chargeId Charge id

Example Usage

Method: getCharges

Lists all charges

Example Usage

Method: createCharge

Creates a new charge

Parameters

Parameter Tags Description
request Request for creating a charge

Example Usage

Method: updateChargeCard

Updates the card from a charge

Parameters

Parameter Tags Description
chargeId Charge id
request Request for updating a charge's card

Example Usage

Method: updateChargePaymentMethod

Updates a charge's payment method

Parameters

Parameter Tags Description
chargeId Charge id
request Request for updating the payment method from a charge

Example Usage

Method: cancelCharge

Cancel a charge

Parameters

Parameter Tags Description
chargeId Charge id
request Request for cancelling a charge

Example Usage

Method: captureCharge

Captures a charge

Parameters

Parameter Tags Description
chargeId Charge id
request Request for capturing a charge

Example Usage

Back to List of Controllers

Class: CustomersController

Get singleton instance

The singleton instance of the class can be accessed from the API Client.

Method: getAddresses

Gets all adressess from a customer

Parameters

Parameter Tags Description
customerId Customer id

Example Usage

Method: getCards

Get all cards from a customer

Parameters

Parameter Tags Description
customerId Customer Id

Example Usage

Method: getCustomers

Get all Customers

Example Usage

Method: createCustomer

Creates a new customer

Parameters

Parameter Tags Description
request Request for creating a customer

Example Usage

Method: getCustomer

Get a customer

Parameters

Parameter Tags Description
customerId Customer Id

Example Usage

Method: updateAddress

Updates an address

Parameters

Parameter Tags Description
customerId Customer Id
addressId Address Id
request Request for updating an address

Example Usage

Method: updateCard

Updates a card

Parameters

Parameter Tags Description
customerId Customer Id
cardId Card id
request Request for updating a card

Example Usage

Method: getAddress

Get a customer's address

Parameters

Parameter Tags Description
customerId Customer id
addressId Address Id

Example Usage

Method: deleteAddress

Delete a Customer's address

Parameters

Parameter Tags Description
customerId Customer Id
addressId Address Id

Example Usage

Method: deleteCard

Delete a customer's card

Parameters

Parameter Tags Description
customerId Customer Id
cardId Card Id

Example Usage

Method: createAddress

Creates a new address for a customer

Parameters

Parameter Tags Description
customerId Customer Id
request Request for creating an address

Example Usage

Method: getCard

Get a customer's card

Parameters

Parameter Tags Description
customerId Customer id
cardId Card id

Example Usage

Method: createCard

Creates a new card for a customer

Parameters

Parameter Tags Description
customerId Customer id
request Request for creating a card

Example Usage

Method: updateCustomer

Updates a customer

Parameters

Parameter Tags Description
customerId Customer id
request Request for updating a customer

Example Usage

Method: deleteAccessTokens

Delete a Customer's access tokens

Parameters

Parameter Tags Description
customerId Customer Id

Example Usage

Method: getAccessTokens

Get all access tokens from a customer

Parameters

Parameter Tags Description
customerId Customer Id

Example Usage

Method: deleteAccessToken

Delete a customer's access token

Parameters

Parameter Tags Description
customerId Customer Id
tokenId Token Id

Example Usage

Method: createAccessToken

Creates a access token for a customer

Parameters

Parameter Tags Description
customerId Customer Id
request Request for creating a access token

Example Usage

Method: getAccessToken

Get a Customer's access token

Parameters

Parameter Tags Description
customerId Customer Id
tokenId Token Id

Example Usage

Back to List of Controllers

Class: SubscriptionsController

Get singleton instance

The singleton instance of the class can be accessed from the API Client.

Method: updateSubscriptionBillingDate

Updates the billing date from a subscription

Parameters

Parameter Tags Description
subscriptionId The subscription id
request Request for updating the subscription billing date

Example Usage

Method: createUsage

Creates a usage

Parameters

Parameter Tags Description
subscriptionId Subscription Id
itemId Item id
body Request for creating a usage

Example Usage

Method: updateSubscriptionItem

Updates a subscription item

Parameters

Parameter Tags Description
subscriptionId Subscription Id
itemId Item id
body Request for updating a subscription item

Example Usage

Method: getSubscriptions

Gets all subscriptions

Example Usage

Method: updateSubscriptionCard

Updates the credit card from a subscription

Parameters

Parameter Tags Description
subscriptionId Subscription id
request Request for updating a card

Example Usage

Method: createSubscription

Creates a new subscription

Parameters

Parameter Tags Description
body Request for creating a subscription

Example Usage

Method: createSubscriptionItem

Creates a new Subscription item

Parameters

Parameter Tags Description
subscriptionId Subscription id
request Request for creating a subscription item

Example Usage

Method: createDiscount

Creates a discount

Parameters

Parameter Tags Description
subscriptionId Subscription id
request Request for creating a discount

Example Usage

Method: getSubscription

Gets a subscription

Parameters

Parameter Tags Description
subscriptionId Subscription id

Example Usage

Method: updateSubscriptionPaymentMethod

Updates the payment method from a subscription

Parameters

Parameter Tags Description
subscriptionId Subscription id
request Request for updating the paymentmethod from a subscription

Example Usage

Method: getUsages

Lists all usages from a subscription item

Parameters

Parameter Tags Description
subscriptionId The subscription id
itemId The subscription item id

Example Usage

Method: deleteUsage

Deletes a usage

Parameters

Parameter Tags Description
subscriptionId The subscription id
itemId The subscription item id
usageId The usage id

Example Usage

Method: deleteDiscount

Deletes a discount

Parameters

Parameter Tags Description
subscriptionId Subscription id
discountId Discount Id

Example Usage

Method: cancelSubscription

Cancels a subscription

Parameters

Parameter Tags Description
subscriptionId Subscription id
request Request for cancelling a subscription

Example Usage

Method: deleteSubscriptionItem

Deletes a subscription item

Parameters

Parameter Tags Description
subscriptionId Subscription id
subscriptionItemId Subscription item id

Example Usage

Back to List of Controllers

Class: PlansController

Get singleton instance

The singleton instance of the class can be accessed from the API Client.

Method: getPlanItems

Gets all items from a plan

Parameters

Parameter Tags Description
planId Plan id

Example Usage

Method: updatePlanItem

Updates a plan item

Parameters

Parameter Tags Description
planId Plan id
planItemId Plan item id
body Request for updating the plan item

Example Usage

Method: getPlan

Gets a plan

Parameters

Parameter Tags Description
planId Plan id

Example Usage

Method: createPlanItem

Adds a new item to a plan

Parameters

Parameter Tags Description
planId Plan id
request Request for creating a plan item

Example Usage

Method: updatePlan

Updates a plan

Parameters

Parameter Tags Description
planId Plan id
request Request for updating a plan

Example Usage

$planId = 'plan_id';
$request = new UpdatePlanRequest();

$result = $plans->updatePlan($planId, $request);

Method: createPlan

Creates a new plan

function createPlan($body)

Parameters

Parameter Tags Description
body Required Request for creating a plan

Example Usage

$body = new CreatePlanRequest();

$result = $plans->createPlan($body);

Method: getPlans

Gets all plans

function getPlans()

Example Usage


$result = $plans->getPlans();

Method: deletePlan

Deletes a plan

function deletePlan($planId)

Parameters

Parameter Tags Description
planId Required Plan id

Example Usage

$planId = 'plan_id';

$result = $plans->deletePlan($planId);

Method: getPlanItem

Gets a plan item

function getPlanItem(
        $planId,
        $planItemId)

Parameters

Parameter Tags Description
planId Required Plan id
planItemId Required Plan item id

Example Usage

$planId = 'plan_id';
$planItemId = 'plan_item_id';

$result = $plans->getPlanItem($planId, $planItemId);

Method: deletePlanItem

Removes an item from a plan

function deletePlanItem(
        $planId,
        $planItemId)

Parameters

Parameter Tags Description
planId Required Plan id
planItemId Required Plan item id

Example Usage

$planId = 'plan_id';
$planItemId = 'plan_item_id';

$result = $plans->deletePlanItem($planId, $planItemId);

Back to List of Controllers

Class: InvoicesController

Get singleton instance

The singleton instance of the InvoicesController class can be accessed from the API Client.

$invoices = $client->getInvoices();

Method: cancelInvoice

Cancels an invoice

function cancelInvoice($invoiceId)

Parameters

Parameter Tags Description
invoiceId Required Invoice id

Example Usage

$invoiceId = 'invoice_id';

$result = $invoices->cancelInvoice($invoiceId);

Method: getLastInvoiceCharge

Gets the last charge from an invoice

function getLastInvoiceCharge($invoiceId)

Parameters

Parameter Tags Description
invoiceId Required Invoice id

Example Usage

$invoiceId = 'invoice_id';

$result = $invoices->getLastInvoiceCharge($invoiceId);

Method: getInvoices

Gets all invoices

function getInvoices()

Example Usage


$result = $invoices->getInvoices();

Method: getInvoice

Gets an invoice

function getInvoice($invoiceId)

Parameters

Parameter Tags Description
invoiceId Required Invoice Id

Example Usage

$invoiceId = 'invoice_id';

$result = $invoices->getInvoice($invoiceId);

Back to List of Controllers

Class: OrdersController

Get singleton instance

The singleton instance of the OrdersController class can be accessed from the API Client.

$orders = $client->getOrders();

Method: getOrder

Gets an order

function getOrder($orderId)

Parameters

Parameter Tags Description
orderId Required Order id

Example Usage

$orderId = 'order_id';

$result = $orders->getOrder($orderId);

Method: getOrders

Gets all orders

function getOrders()

Example Usage


$result = $orders->getOrders();

Method: createOrder

Creates a new Order

function createOrder($body)

Parameters

Parameter Tags Description
body Required Request for creating an order

Example Usage

$body = new CreateOrderRequest();

$result = $orders->createOrder($body);

Back to List of Controllers


All versions of mundiapi with dependencies

PHP Build Version
Package Version
Requires php Version >=5.4.0
ext-curl Version *
ext-json Version *
ext-mbstring Version *
mashape/unirest-php Version ~3.0.1
apimatic/jsonmapper Version ~1.2.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package los/mundiapi contains the following files

Loading the files please wait ....