Created
November 13, 2015 13:07
-
-
Save boriscy/93c7879d4b79af7b7bf2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$.ajax({ | |
headers: {token: 'OUy_IJxQveSiKGYPPqYQnAumNCSJSilBAX5A9upF4JU'}, | |
method: "POST", | |
url: "http://demo.bonsaierp.com/api/v1/incomes", | |
data: { | |
income: { | |
"date":"2015-11-13", | |
"due_date":"2015-11-16", | |
"contact_id":1, | |
"currency":"BOB", | |
"description":"Prueba ingreso", | |
"income_details_attributes":[ | |
{"item_id":1,"price":10.0,"quantity":10,"description":"First item"}, | |
{"item_id":2,"price":20.0,"quantity":20,"description":"Second item"} | |
]} | |
} | |
}) | |
.done(function(resp) { | |
console.log("saved", resp); | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment