This API will help to create new Virtual Cards.
Introduction
The PruPal Create Card API enables you to create Virtual Card. This documentation offers comprehensive guidance on utilizing this API effectively.
Request Parameters
The API expects the following parameters in the request:
Property | Presence | Type | Description |
---|---|---|---|
api_key | Mandatory | string | Collect API KEY From Account |
card_holder | Mandatory | string | Card Holder Name |
email_address | Mandatory | string | Card Holder Email Address |
preload_balance | Mandatory | string | Preload Balance |
Success Response Parameters
Property | Type | Description |
---|---|---|
status | string | true |
message | string | Card Create Successfully |
card_id | string | 7448 |
date | string | 23 May, 2024 |
Error Response Parameters
Property | Type | Description |
---|---|---|
status | string | false |
message | string | The message associated with the status, explains the status. |
Sample Request
<?php
$curl = curl_init();
$data = [
'api_key' => 'YOUR_API_KEY',
'card_holder' => 'My Name',
'email_address' => '[email protected]',
'preload_balance' => '5'
];
curl_setopt_array($curl, [
CURLOPT_URL => 'https://api.prupal.com/create',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_HTTPHEADER => [
'accept: application/json',
'content-type: application/json'
],
CURLOPT_POSTFIELDS => json_encode($data)
]);
$response = curl_exec($curl);
if (curl_errno($curl)) {
$error_msg = curl_error($curl);
}
curl_close($curl);
if (isset($error_msg)) {
// Handle error here
echo "cURL Error: " . $error_msg;
} else {
// Handle response here
echo "Response: " . $response;
}
Sample Response
{
"status": "true",
"message": "Card Create Successfully",
"card_id": "7448",
"date": "23 May, 2024"
}