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.
Package mundiapi
Short Description Mundipagg API
License MIT
Homepage https://apimatic.io
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.
- Using command line, navigate to the directory containing the generated files (including ) for the SDK.
- Run the command . This should install all the required dependencies and create the directory in your project directory.
[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:
- Download the certificate bundle (.pem file) from https://curl.haxx.se/docs/caextract.html on to your system.
- 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.
Click on in PhpStorm to browse to your generated SDK directory and then click .
2. Add a new Test Project
Create a new directory by right clicking on the solution name as shown below:
Name the directory as "test"
Add a PHP file to this project
Name it "testSDK"
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.
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.
Select from within
Browse for Interpreters near the option and choose your interpreter.
Once the interpreter is selected, click
To run your project, right click on your PHP file inside your Test project and click on
How to Test
Unit tests in this SDK can be run using PHPUnit.
- First install the dependencies using composer including the
require-dev
dependencies. - Run
vendor\bin\phpunit --verbose
from commandline to execute tests. If you have installed PHPUnit globally, run tests usingphpunit --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
- ChargesController
- CustomersController
- SubscriptionsController
- PlansController
- InvoicesController
- OrdersController
ChargesController
Get singleton instance
The singleton instance of the class can be accessed from the API Client.
getCharge
Get a charge from its id
Parameters
Parameter | Tags | Description |
---|---|---|
chargeId | Charge id |
Example Usage
retryCharge
Retries a charge
Parameters
Parameter | Tags | Description |
---|---|---|
chargeId | Charge id |
Example Usage
getCharges
Lists all charges
Example Usage
createCharge
Creates a new charge
Parameters
Parameter | Tags | Description |
---|---|---|
request | Request for creating a charge |
Example Usage
updateChargeCard
Updates the card from a charge
Parameters
Parameter | Tags | Description |
---|---|---|
chargeId | Charge id | |
request | Request for updating a charge's card |
Example Usage
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
cancelCharge
Cancel a charge
Parameters
Parameter | Tags | Description |
---|---|---|
chargeId | Charge id | |
request | Request for cancelling a charge |
Example Usage
captureCharge
Captures a charge
Parameters
Parameter | Tags | Description |
---|---|---|
chargeId | Charge id | |
request | Request for capturing a charge |
Example Usage
Back to List of Controllers
CustomersController
Get singleton instance
The singleton instance of the class can be accessed from the API Client.
getAddresses
Gets all adressess from a customer
Parameters
Parameter | Tags | Description |
---|---|---|
customerId | Customer id |
Example Usage
getCards
Get all cards from a customer
Parameters
Parameter | Tags | Description |
---|---|---|
customerId | Customer Id |
Example Usage
getCustomers
Get all Customers
Example Usage
createCustomer
Creates a new customer
Parameters
Parameter | Tags | Description |
---|---|---|
request | Request for creating a customer |
Example Usage
getCustomer
Get a customer
Parameters
Parameter | Tags | Description |
---|---|---|
customerId | Customer Id |
Example Usage
updateAddress
Updates an address
Parameters
Parameter | Tags | Description |
---|---|---|
customerId | Customer Id | |
addressId | Address Id | |
request | Request for updating an address |
Example Usage
updateCard
Updates a card
Parameters
Parameter | Tags | Description |
---|---|---|
customerId | Customer Id | |
cardId | Card id | |
request | Request for updating a card |
Example Usage
getAddress
Get a customer's address
Parameters
Parameter | Tags | Description |
---|---|---|
customerId | Customer id | |
addressId | Address Id |
Example Usage
deleteAddress
Delete a Customer's address
Parameters
Parameter | Tags | Description |
---|---|---|
customerId | Customer Id | |
addressId | Address Id |
Example Usage
deleteCard
Delete a customer's card
Parameters
Parameter | Tags | Description |
---|---|---|
customerId | Customer Id | |
cardId | Card Id |
Example Usage
createAddress
Creates a new address for a customer
Parameters
Parameter | Tags | Description |
---|---|---|
customerId | Customer Id | |
request | Request for creating an address |
Example Usage
getCard
Get a customer's card
Parameters
Parameter | Tags | Description |
---|---|---|
customerId | Customer id | |
cardId | Card id |
Example Usage
createCard
Creates a new card for a customer
Parameters
Parameter | Tags | Description |
---|---|---|
customerId | Customer id | |
request | Request for creating a card |
Example Usage
updateCustomer
Updates a customer
Parameters
Parameter | Tags | Description |
---|---|---|
customerId | Customer id | |
request | Request for updating a customer |
Example Usage
deleteAccessTokens
Delete a Customer's access tokens
Parameters
Parameter | Tags | Description |
---|---|---|
customerId | Customer Id |
Example Usage
getAccessTokens
Get all access tokens from a customer
Parameters
Parameter | Tags | Description |
---|---|---|
customerId | Customer Id |
Example Usage
deleteAccessToken
Delete a customer's access token
Parameters
Parameter | Tags | Description |
---|---|---|
customerId | Customer Id | |
tokenId | Token Id |
Example Usage
createAccessToken
Creates a access token for a customer
Parameters
Parameter | Tags | Description |
---|---|---|
customerId | Customer Id | |
request | Request for creating a access token |
Example Usage
getAccessToken
Get a Customer's access token
Parameters
Parameter | Tags | Description |
---|---|---|
customerId | Customer Id | |
tokenId | Token Id |
Example Usage
Back to List of Controllers
SubscriptionsController
Get singleton instance
The singleton instance of the class can be accessed from the API Client.
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
createUsage
Creates a usage
Parameters
Parameter | Tags | Description |
---|---|---|
subscriptionId | Subscription Id | |
itemId | Item id | |
body | Request for creating a usage |
Example Usage
updateSubscriptionItem
Updates a subscription item
Parameters
Parameter | Tags | Description |
---|---|---|
subscriptionId | Subscription Id | |
itemId | Item id | |
body | Request for updating a subscription item |
Example Usage
getSubscriptions
Gets all subscriptions
Example Usage
updateSubscriptionCard
Updates the credit card from a subscription
Parameters
Parameter | Tags | Description |
---|---|---|
subscriptionId | Subscription id | |
request | Request for updating a card |
Example Usage
createSubscription
Creates a new subscription
Parameters
Parameter | Tags | Description |
---|---|---|
body | Request for creating a subscription |
Example Usage
createSubscriptionItem
Creates a new Subscription item
Parameters
Parameter | Tags | Description |
---|---|---|
subscriptionId | Subscription id | |
request | Request for creating a subscription item |
Example Usage
createDiscount
Creates a discount
Parameters
Parameter | Tags | Description |
---|---|---|
subscriptionId | Subscription id | |
request | Request for creating a discount |
Example Usage
getSubscription
Gets a subscription
Parameters
Parameter | Tags | Description |
---|---|---|
subscriptionId | Subscription id |
Example Usage
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
getUsages
Lists all usages from a subscription item
Parameters
Parameter | Tags | Description |
---|---|---|
subscriptionId | The subscription id | |
itemId | The subscription item id |
Example Usage
deleteUsage
Deletes a usage
Parameters
Parameter | Tags | Description |
---|---|---|
subscriptionId | The subscription id | |
itemId | The subscription item id | |
usageId | The usage id |
Example Usage
deleteDiscount
Deletes a discount
Parameters
Parameter | Tags | Description |
---|---|---|
subscriptionId | Subscription id | |
discountId | Discount Id |
Example Usage
cancelSubscription
Cancels a subscription
Parameters
Parameter | Tags | Description |
---|---|---|
subscriptionId | Subscription id | |
request | Request for cancelling a subscription |
Example Usage
deleteSubscriptionItem
Deletes a subscription item
Parameters
Parameter | Tags | Description |
---|---|---|
subscriptionId | Subscription id | |
subscriptionItemId | Subscription item id |
Example Usage
Back to List of Controllers
PlansController
Get singleton instance
The singleton instance of the class can be accessed from the API Client.
getPlanItems
Gets all items from a plan
Parameters
Parameter | Tags | Description |
---|---|---|
planId | Plan id |
Example Usage
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
getPlan
Gets a plan
Parameters
Parameter | Tags | Description |
---|---|---|
planId | Plan id |
Example Usage
createPlanItem
Adds a new item to a plan
Parameters
Parameter | Tags | Description |
---|---|---|
planId | Plan id | |
request | Request for creating a plan item |
Example Usage
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);
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);
getPlans
Gets all plans
function getPlans()
Example Usage
$result = $plans->getPlans();
deletePlan
Deletes a plan
function deletePlan($planId)
Parameters
Parameter | Tags | Description |
---|---|---|
planId | Required |
Plan id |
Example Usage
$planId = 'plan_id';
$result = $plans->deletePlan($planId);
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);
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
InvoicesController
Get singleton instance
The singleton instance of the InvoicesController
class can be accessed from the API Client.
$invoices = $client->getInvoices();
cancelInvoice
Cancels an invoice
function cancelInvoice($invoiceId)
Parameters
Parameter | Tags | Description |
---|---|---|
invoiceId | Required |
Invoice id |
Example Usage
$invoiceId = 'invoice_id';
$result = $invoices->cancelInvoice($invoiceId);
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);
getInvoices
Gets all invoices
function getInvoices()
Example Usage
$result = $invoices->getInvoices();
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
OrdersController
Get singleton instance
The singleton instance of the OrdersController
class can be accessed from the API Client.
$orders = $client->getOrders();
getOrder
Gets an order
function getOrder($orderId)
Parameters
Parameter | Tags | Description |
---|---|---|
orderId | Required |
Order id |
Example Usage
$orderId = 'order_id';
$result = $orders->getOrder($orderId);
getOrders
Gets all orders
function getOrders()
Example Usage
$result = $orders->getOrders();
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
ext-curl Version *
ext-json Version *
ext-mbstring Version *
mashape/unirest-php Version ~3.0.1
apimatic/jsonmapper Version ~1.2.0