GET api/vender/getservice/{user_id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| user_id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of Service| Name | Description | Type | Additional information |
|---|---|---|---|
| Services_ID | integer |
None. |
|
| Services_name | string |
None. |
|
| Services_discription | string |
None. |
|
| Services_cat_ID | integer |
None. |
|
| Vender_ID | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Services_ID": 1,
"Services_name": "sample string 2",
"Services_discription": "sample string 3",
"Services_cat_ID": 1,
"Vender_ID": 1
},
{
"Services_ID": 1,
"Services_name": "sample string 2",
"Services_discription": "sample string 3",
"Services_cat_ID": 1,
"Vender_ID": 1
}
]
application/xml, text/xml
Sample:
<ArrayOfService xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/asanRishta.Models">
<Service>
<Services_ID>1</Services_ID>
<Services_cat_ID>1</Services_cat_ID>
<Services_discription>sample string 3</Services_discription>
<Services_name>sample string 2</Services_name>
<Vender_ID>1</Vender_ID>
</Service>
<Service>
<Services_ID>1</Services_ID>
<Services_cat_ID>1</Services_cat_ID>
<Services_discription>sample string 3</Services_discription>
<Services_name>sample string 2</Services_name>
<Vender_ID>1</Vender_ID>
</Service>
</ArrayOfService>