Assists you to programmatically create, edit and delete Links on Instamojo in PHP.
Note: If you're using this wrapper with our sandbox environment https://test.instamojo.com/
then you should pass 'https://test.instamojo.com/api/1.1/'
as third argument to the Instamojo
class while initializing it. API key and Auth token for the same can be obtained from https://test.instamojo.com/developers/ (Details: Test Or Sandbox Account).
$api = new Instamojo\Instamojo(API_KEY, AUTH_TOKEN, 'https://test.instamojo.com/api/1.1/');
Installing via Composer
$ php composer.phar require instamojo/instamojo-php
Note: If you're not using Composer then directly include the contents of src
directory in your project.
$api = new Instamojo\Instamojo(API_KEY, AUTH_TOKEN);
try {
$response = $api->paymentRequestCreate(array(
"purpose" => "FIFA 16",
"amount" => "3499",
"send_email" => true,
"email" => "foo@example.com",
"redirect_url" => "http://www.example.com/handle_redirect.php"
));
print_r($response);
}
catch (Exception $e) {
print('Error: ' . $e->getMessage());
}
This will give you JSON object containing details of the Payment Request that was just created.
try {
$response = $api->paymentRequestStatus(['PAYMENT REQUEST ID']);
print_r($response);
}
catch (Exception $e) {
print('Error: ' . $e->getMessage());
}
This will give you JSON object containing details of the Payment Request and the payments related to it.
Key for payments is 'payments'
.
Here ['PAYMENT REQUEST ID']
is the value of 'id'
key returned by the paymentRequestCreate()
query.
try {
$response = $api->paymentRequestPaymentStatus(['PAYMENT REQUEST ID'], ['PAYMENT ID']);
print_r($response['purpose']); // print purpose of payment request
print_r($response['payment']['status']); // print status of payment
}
catch (Exception $e) {
print('Error: ' . $e->getMessage());
}
This will give you JSON object containing details of the Payment Request and the payments related to it.
Key for payments is 'payments'
.
Here ['PAYMENT REQUEST ID']
is the value of 'id'
key returned by the paymentRequestCreate()
query and
['PAYMENT ID']
is the Payment ID received with redirection URL or webhook.
try {
$response = $api->paymentRequestsList();
print_r($response);
}
catch (Exception $e) {
print('Error: ' . $e->getMessage());
}
This will give you an array containing Payment Requests created so far. Note that the payments related to individual Payment Request are not returned with this query.
paymentRequestsList()
also accepts an optional array containing keys 'max_created_at'
, 'min_created_at'
, 'min_modified_at'
and 'max_modified_at'
for filtering the list of Payment Requests. Note that it is not required to pass all of the keys.
$response = $api->paymentRequestsList(array(
"max_created_at" => "2015-11-19T10:12:19Z",
"min_created_at" => "2015-10-29T12:51:36Z"
));
For details related to supported datetime format check the documentation: https://www.instamojo.com/developers/request-a-payment-api/#toc-filtering-payment-requests
You have these functions to interact with the Request a Payment API:
paymentRequestCreate(array $payment_request)
Create a new Payment Request.paymentRequestStatus($id)
Get details of Payment Request specified by its unique id.paymentRequestsList(array $datetime_limits)
Get a list of all Payment Requests. The$datetime_limits
argument is optional an can be used to filter Payment Requests by their creation and modification date.
purpose
: Purpose of the payment request. (max-characters: 30)amount
: Amount requested (min-value: 9 ; max-value: 200000)
buyer_name
: Name of the payer. (max-characters: 100)email
: Email of the payer. (max-characters: 75)phone
: Phone number of the payer.send_email
: Set this totrue
if you want to send email to the payer if email is specified. If email is not specified then an error is raised. (default value:false
)send_sms
: Set this totrue
if you want to send SMS to the payer if phone is specified. If phone is not specified then an error is raised. (default value:false
)redirect_url
: set this to a thank-you page on your site. Buyers will be redirected here after successful payment.webhook
: set this to a URL that can accept POST requests made by Instamojo server after successful payment.allow_repeated_payments
: To disallow multiple successful payments on a Payment Request passfalse
for this field. If this is set tofalse
then the link is not accessible publicly after first successful payment, though you can still access it using API(default value:true
).
Further documentation is available at https://docs.instamojo.com/v1.1/docs