Customers

Represents an Adventure Works Customers API. Use the /customers service to create, read, update, and delete customers.

APIDescription
GET api/Customers

No documentation available.

GET api/Customers/{id}

Returns the customer with the given ID.

PUT api/Customers/{id}

Updates an existing customer.

POST api/Customers

Creates a new customer (the ID is generated)

DELETE api/Customers/{id}

Deletes the specified customer.

Products

Represents an Adventure Works Products API.

APIDescription
GET api/Products

Gets all Adventure Works products.

GET api/Products/{id}

Gets the given Adventure Works product.

PUT api/Products/{id}

Updates the existing product.

POST api/Products

Creates a new product.

DELETE api/Products/{id}

Removes a specified product.