User Tools

Site Tools


rest_api_customers

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
Next revisionBoth sides next revision
rest_api_customers [2016/09/06 12:10] – created sweitmannrest_api_customers [2016/11/30 10:44] sweitmann
Line 1: Line 1:
 +====REST API for CUSTOMER data====
 +
 +View all customers in XML format
 +    https://localhost:3000/*databasename*/customers.xml?token=123
 +View all customers in JSON format
 +    https://localhost:3000/*databasename*/customers.json?token=123    
 +View single customer in XML format
 +    https://localhost:3000/*databasename*/*customer_id*.xml?token=123
 +View single customer in JSON format
 +    https://localhost:3000/*databasename*/*customer_id*.json?token=123    
 +Adding or updating a customer with XML from command line
 +    curl -X POST -H "Content-Type: application/xml" -d @customer.xml https://localhost:3000/*databasename*/customers?token=123
 +Adding or updating a customer with JSON format from command line
 +    curl -X POST -H "Content-Type: application/json" -d @customer.xml https://localhost:3000/*databasename*/customers?token=123
 +Delete a customer with DELETE request
 +    curl -X DELETE https://localhost:3000/*databasename*/customers/*customer_id*?token=123
 +
 +
 {{:api-first-draf.png?200|}} {{:api-first-draf.png?200|}}
rest_api_customers.txt · Last modified: 2016/12/08 08:54 by sweitmann