POST api/signin-with-services
Request Information
URI Parameters
None.
Body Parameters
SingInWithServiceParam| Name | Description | Type | Additional information |
|---|---|---|---|
| CustomerName | string |
None. |
|
| CustomerId | integer |
None. |
|
| Services | Collection of tbServiceItem |
None. |
Request Formats
application/json, text/json
Sample:
{
"CustomerName": "sample string 1",
"CustomerId": 2,
"Services": [
{
"ServiceId": 1,
"Quantity": 2,
"Price": 3.1,
"TechId": 4
},
{
"ServiceId": 1,
"Quantity": 2,
"Price": 3.1,
"TechId": 4
}
]
}
multipart/form-data
Sample:
{"CustomerName":"sample string 1","CustomerId":2,"Services":[{"ServiceId":1,"Quantity":2,"Price":3.1,"TechId":4},{"ServiceId":1,"Quantity":2,"Price":3.1,"TechId":4}]}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ObjectNone.
Response Formats
application/json, text/json, multipart/form-data
Sample:
{}