POST api/Drivers/Insert
Request Information
URI Parameters
None.
Body Parameters
DriverInsertModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Driver_Name | string |
None. |
|
| Driver_Phone | string |
None. |
|
| Driver_Iqama | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Driver_Name": "sample string 1",
"Driver_Phone": "sample string 2",
"Driver_Iqama": "sample string 3"
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ApiResponseOfDriverInsertModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ApiMessage | ApiMessage |
None. |
|
| Data | DriverInsertModel |
None. |
Response Formats
application/json, text/json
Sample:
{
"ApiMessage": {
"StatusCode": 1,
"StatusMessage": "sample string 2"
},
"Data": {
"Driver_Name": "sample string 1",
"Driver_Phone": "sample string 2",
"Driver_Iqama": "sample string 3"
}
}