POST api/drivers/{id}/contacts
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
DriverContactInputViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| driver_id | integer |
None. |
|
| number | string |
Required |
|
| types | integer |
Required |
|
| primary | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"driver_id": 1,
"number": "sample string 2",
"types": 3,
"primary": true
}
application/xml, text/xml
Sample:
<DriverContactInputViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/autocenter_api.Models.ViewModel"> <driver_id>1</driver_id> <number>sample string 2</number> <primary>true</primary> <types>3</types> </DriverContactInputViewModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.