POST api/companyDetail
Request Information
URI Parameters
None.
Body Parameters
CompanyRequestModel| Name | Description | Type | Additional information |
|---|---|---|---|
| searchTerm | string |
None. |
|
| searchCompanyName | string |
None. |
|
| pageNo | integer |
None. |
|
| companyId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"searchTerm": "sample string 1",
"searchCompanyName": "sample string 2",
"pageNo": 3,
"companyId": 4
}
application/xml, text/xml
Sample:
<CompanyRequestModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GlutenDude.BusinessEntity.API"> <companyId>4</companyId> <pageNo>3</pageNo> <searchCompanyName>sample string 2</searchCompanyName> <searchTerm>sample string 1</searchTerm> </CompanyRequestModel>
multipart/form-data
Sample:
<CompanyRequestModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GlutenDude.BusinessEntity.API"><companyId>4</companyId><pageNo>3</pageNo><searchCompanyName>sample string 2</searchCompanyName><searchTerm>sample string 1</searchTerm></CompanyRequestModel>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |