-
Notifications
You must be signed in to change notification settings - Fork 16
RESTful API
kaznum edited this page Oct 18, 2012
·
17 revisions
- Support :LIST ALL
- Authentication: "via api/session" or "Basic Auth"
- URL: api/accounts.json
- Verb: GET
- Presentation Format: JSON
- Response Presentation Sample
{"accounts":[
{"id":1,"name":"\u8ca1\u5e03","bgcolor":"faac3d","type":"Banking"},
{"id":2,"name":"\u9280\u884cA","bgcolor":null,"type":"Banking"},
{"id":3,"name":"\u9280\u884cB","bgcolor":null,"type":"Banking"},
{"id":4,"name":"\u30af\u30ec\u30b8\u30c3\u30c8\u30ab\u30fc\u30c9","bgcolor":"e83b3b","type":"Banking"},
{"id":5,"name":"\u7d66\u4e0e","bgcolor":"1acb0b","type":"Income"},
{"id":6,"name":"\u8cde\u4e0e","bgcolor":"d91212","type":"Income"},
{"id":7,"name":"\u96d1\u53ce\u5165","bgcolor":null,"type":"Income"},
{"id":8,"name":"\u98df\u8cbb","bgcolor":null,"type":"Expense"},
{"id":9,"name":"\u5149\u71b1\u8cbb","bgcolor":null,"type":"Expense"},
{"id":10,"name":"\u4f4f\u5c45\u8cbb","bgcolor":null,"type":"Expense"},
{"id":12,"name":"\u885b\u751f\u8cbb","bgcolor":null,"type":"Expense"},
{"id":66,"name":"\u98f2\u307f\u4f1a","bgcolor":null,"type":"Expense"}
]}
- Support: LIST (monthly), Create, Update, Delete, Read
- Authentication: "via api/session" or "Basic Auth"
- URL: api/entries.json, api/entries/10.json (10 is entry's ID)
- LIST's Acceptable URL params: year, month, tag, mark
- When URL params are not specified for LIST, the response is the list for the current month
- Presentation Format: JSON
- Presentation format example for "GET api/entries/103.json"
{"entry": {
"id":103,
"name":"master\u304cRESTful API\u306b\u5bfe\u5fdc\u3057\u307e\u3057\u305f:ok_woman:",
"from_account_id":1,
"to_account_id":8,
"action_date":"2012-10-18",
"amount":3000,
"adjustment_amount":0,
"tag_list":"" }}