GET api/Common/getAllFollowUpCombobox?BranchId={BranchId}&UserType={UserType}&StateId={StateId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| BranchId | integer |
Required |
|
| UserType | integer |
Required |
|
| StateId | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of FollowupDropdownLoad| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | decimal number |
None. |
|
| DocumentId | string |
None. |
|
| Name | string |
None. |
|
| Col4 | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1.0,
"DocumentId": "sample string 2",
"Name": "sample string 3",
"Col4": "sample string 4"
},
{
"Id": 1.0,
"DocumentId": "sample string 2",
"Name": "sample string 3",
"Col4": "sample string 4"
}
]
application/xml, text/xml
Sample:
<ArrayOfFollowupDropdownLoad xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ZenoxERP.API.Models.Extensions">
<FollowupDropdownLoad>
<Col4>sample string 4</Col4>
<DocumentId>sample string 2</DocumentId>
<Id>1</Id>
<Name>sample string 3</Name>
</FollowupDropdownLoad>
<FollowupDropdownLoad>
<Col4>sample string 4</Col4>
<DocumentId>sample string 2</DocumentId>
<Id>1</Id>
<Name>sample string 3</Name>
</FollowupDropdownLoad>
</ArrayOfFollowupDropdownLoad>