This is REST API using CodeIgniter and Midtrans for PHP.
git clone https://github.com/metagenes/midtrans_ci
Save to your local server such as XAMPP in htdocs folder.
composer install
http://localhost/midtrans_ci/index.php/product
The REST API to the app is described below.
GET /
curl -i -H 'Accept: application/json' http://localhost/midtrans_ci/index.php/product
HTTP/1.1 200 OK
Date: Thu, 24 Feb 2011 12:36:30 GMT
Status: 200 OK
Connection: close
Content-Type: application/json
Content-Length: 2
[welcome to checkout API, for API documentation please refer to ...]
POST /product
curl -i -H 'Accept: application/json' -d 'customer_name=Name&customer_email=Email&customer_phone=123&product_description=description&total_price=total_price' http://localhost/midtrans_ci/index.php/product
HTTP/1.1 201 Created
Date: Thu, 24 Feb 2011 12:36:30 GMT
Status: 201 Created
Connection: close
Content-Type: application/json
Location: /thing/1
Content-Length: 36t
{"snapToken"}