The PayPal API allows developers to integrate PayPal payment solutions into their websites and applications. With its robust features, you can accept payments, issue refunds, and manage transactions directly from your platform.
Create a PayPal Developer Account:
Set Up Your Environment:
Use a package manager like npm to install the PayPal SDK:
npm install @paypal/checkout-server-sdk
Here’s a simple example of how to create a payment using the PayPal API in Node.js:
const paypal = require('@paypal/checkout-server-sdk');
// Initialize the PayPal client
function environment() {
return new paypal.core.SandboxEnvironment('CLIENT_ID', 'CLIENT_SECRET');
}
function client() {
return new paypal.core.PayPalHttpClient(environment());
}
// Creating a Payment
async function createPayment() {
const request = new paypal.orders.OrdersCreateRequest();
request.requestBody({
intent: 'CAPTURE',
purchase_units: [{
amount: {
currency_code: 'USD',
value: '100.00'
}
}]
});
try {
const order = await client().execute(request);
console.log(`Order ID: ${order.result.id}`);
return order.result.id;
} catch (err) {
console.error(err);
}
}
createPayment();
OrdersCreateRequest
function sets up a new order with a specified amount.client().execute(request)
sends the request to PayPal and returns the order ID.After creating a payment, you need to capture it to finalize the transaction:
async function capturePayment(orderId) {
const request = new paypal.orders.OrdersCaptureRequest(orderId);
request.requestBody({});
try {
const response = await client().execute(request);
console.log(`Capture ID: ${response.result.id}`);
} catch (err) {
console.error(err);
}
}
capturePayment('ORDER_ID'); // Replace with the actual order ID
OrdersCaptureRequest
captures the payment for the specified order ID.Integrating the PayPal API into your online platform can streamline your payment processing and enhance user experience. By following the provided examples, you can effectively set up payment creation and capture functionalities. For more advanced features, refer to the PayPal API documentation.