POST api/Search/GetDrivers
Request Information
URI Parameters
None.
Body Parameters
SearchModel| Name | Description | Type | Additional information |
|---|---|---|---|
| SearchText | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"SearchText": "sample string 1"
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ApiResponseOfListOfDriverModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ApiMessage | ApiMessage |
None. |
|
| Data | Collection of DriverModel |
None. |
Response Formats
application/json, text/json
Sample:
{
"ApiMessage": {
"StatusCode": 1,
"StatusMessage": "sample string 2"
},
"Data": [
{
"Driver_Id": 1,
"Driver_Name": "sample string 2",
"Driver_Phone": "sample string 3",
"Driver_Iqama": "sample string 4",
"RowCount": 5
},
{
"Driver_Id": 1,
"Driver_Name": "sample string 2",
"Driver_Phone": "sample string 3",
"Driver_Iqama": "sample string 4",
"RowCount": 5
}
]
}