Create a new order

Log in to see full request history

You can create a new order using the API.

$.post('http://sampleapi.readme.com/orders/', { user: { 'name': 'Gregory Koberger', 'email': 'gkoberger@gmail.com' }, address: '123 Main St, San Francisco, CA 94117', fulfilled: false, key: '[[app:key]]', }, function(data) { alert(data); });
r = requests.post('http://sampleapi.readme.com/orders/', { user: { 'name': 'Gregory Koberger', 'email': 'gkoberger@gmail.com' }, address: '123 Main St, San Francisco, CA 94117', fulfilled: false, key: '[[app:key]]', }, auth="[[app:key]]") print r.text
var request = require('request'); request.post('http://sampleapi.readme.com/orders/', { user: { 'name': 'Gregory Koberger', 'email': 'gkoberger@gmail.com' }, address: '123 Main St, San Francisco, CA 94117', fulfilled: false, key: '[[app:key]]', }, function (error, response, body) { if (!error && response.statusCode == 200) { console.log(body) // Print the google web page. } })

❗️

Confirmation Emails

If you don't receive a confirmation email within 10 minutes, please contact us immediately!

Body Params
user
object
string
required

The address to be shipped to

boolean
required
Defaults to false

Has this order been fulfilled yet?

Responses

Language
Click Try It! to start a request and see the response here! Or choose an example:
application/json