rest_api_manual
This is an old revision of the document!
SQL-Ledger REST API Documentation
View all customers in XML format
http://localhost:3000/customers.xml
View all customers in JSON format
http//localhost:3000/customers.json
View single customer in XML format
http://localhost:3000/*customer_id*.xml
View single customer in JSON format
http://localhost:3000/*customer_id*.json
Adding a customer with XML from command line
curl -X POST -H "Content-Type: application/xml" -d @customer.xml http://localhost:3000/customers
Adding a customer with JSON format from command line
curl -X POST -H "Content-Type: application/json" -d @customer.xml http://localhost:3000/customers
Delete a customer with DELETE request
curl -X DELETE http://localhost:3000/customers/*customer_id*
rest_api_manual.1480078868.txt.gz · Last modified: 2024/09/25 06:19 (external edit)