Quote API
| Create Quote | |
| URL | /Quote/Create |
| Method | POST |
| Body |
{
"SalespersonId": 1, "TaxName": } |
| Response |
HTTP/1.1 400 Business rule violation. CustomId should be unique
HTTP/1.1 200 OK
{
"SalespersonId": 1, "TaxName": } |
| Comments |
|
| Update Quote | |
| URL | /Quote |
| Method | PUT |
| Body |
{
"SalespersonId": 1, "TaxName": } |
| Response |
HTTP/1.1 400 Business rule violation. CustomId should be unique
HTTP/1.1 200 OK
{
"SalespersonId": 1, "TaxName": } |
| Comments |
|
| Delete Quote | |
| URL | /Quote/{id} |
| Method | DELETE |
| Body |
|
| Response |
HTTP/1.1 400 Entity not found
HTTP/1.1 200 OK
|
| Comments |
|
| Get Quotes | |
| URL | /Quotes/List |
| Method | POST |
| Body |
{ |
| Response |
[ "SalespersonId": 1, "TaxName": }, "SalespersonId": 1, "TaxName": }, "SalespersonId": 1, "TaxName": } |
| Comments |
|
| Get Quote | |
| URL | /Quote/{id} |
| Method | GET |
| Body |
|
| Response |
{
"SalespersonId": 1, "TaxName": } |
| Comments |