From command line
composer require mercadopago/sdk:0.3.2
As a dependency in your project's composer.json
{
"require": {
"mercadopago/sdk": "0.3.2"
}
}
- Clone/download this repository
- Copy
lib/mercadopago.php
to your project's desired folder.
- Get your CLIENT_ID and CLIENT_SECRET in the following address:
- Argentina: https://www.mercadopago.com/mla/herramientas/aplicaciones
- Brazil: https://www.mercadopago.com/mlb/ferramentas/aplicacoes
- Mexico: https://www.mercadopago.com/mlm/herramientas/aplicaciones
- Venezuela: https://www.mercadopago.com/mlv/herramientas/aplicaciones
- Colombia: https://www.mercadopago.com/mco/herramientas/aplicaciones
- Chile: https://www.mercadopago.com/mlc/herramientas/aplicaciones
require_once ('mercadopago.php');
$mp = new MP ("CLIENT_ID", "CLIENT_SECRET");
$preference = $mp->get_preference("PREFERENCE_ID");
print_r ($preference);
$preference_data = array (
"items" => array (
array (
"title" => "Test",
"quantity" => 1,
"currency_id" => "USD",
"unit_price" => 10.4
)
)
);
$preference = $mp->create_preference($preference_data);
print_r ($preference);
$preference_data = array (
"items" => array (
array (
"title" => "Test Modified",
"quantity" => 1,
"currency_id" => "USD",
"unit_price" => 20.4
)
)
);
$preference = $mp->update_preference("PREFERENCE_ID", $preference_data);
print_r ($preference);
$filters = array (
"id"=>null,
"site_id"=>null,
"external_reference"=>null
);
$searchResult = $mp->search_payment ($filters);
print_r ($searchResult);
require_once ('mercadopago.php');
$mp = new MP ("CLIENT_ID", "CLIENT_SECRET");
$paymentInfo = $mp->get_payment ("PAYMENT_ID");
print_r ($paymentInfo);
$result = $mp->cancel_payment("PAYMENT_ID");
print_r ($result);
$result = $mp->refund_payment("PAYMENT_ID");
print_r ($result);
- Get your ACCESS_TOKEN in the following address:
- Argentina: https://www.mercadopago.com/mla/account/credentials
- Brazil: https://www.mercadopago.com/mlb/account/credentials
- Mexico: https://www.mercadopago.com/mlm/account/credentials
- Venezuela: https://www.mercadopago.com/mlv/account/credentials
- Colombia: https://www.mercadopago.com/mco/account/credentials
require_once ('mercadopago.php');
$mp = new MP ("ACCESS_TOKEN");
$mp->post ("/v1/payments", payment_data);
$mp->post ("/v1/customers", array("email" => "email@test.com"));
$mp->get ("/v1/customers/CUSTOMER_ID");
- View more Custom checkout related APIs in Developers Site
- Argentina: https://www.mercadopago.com.ar/developers
- Brazil: https://www.mercadopago.com.br/developers
- Mexico: https://www.mercadopago.com.mx/developers
- Venezuela: https://www.mercadopago.com.ve/developers
- Colombia: https://www.mercadopago.com.co/developers
You can access any resource from the MercadoPago API (https://api.mercadopago.com) using the generic methods:
// Get a resource, with optional URL params. Also you can disable authentication for public APIs
$mp->get ("/resource/uri", [params], [authenticate=true]);
// Create a resource with "data" and optional URL params.
$mp->post ("/resource/uri", data, [params]);
// Update a resource with "data" and optional URL params.
$mp->put ("/resource/uri", data, [params]);
// Delete a resource with optional URL params.
$mp->delete ("/resource/uri", [params]);