POST api/Values/SignUp

Request Information

URI Parameters

None.

Body Parameters

tblDriver
NameDescriptionTypeAdditional information
DriverId

integer

None.

Name

string

None.

Phone

string

None.

Language

string

None.

TruckId

integer

None.

CarrierAssignId

integer

None.

CreatedBy

integer

None.

CreatedDate

date

None.

IsActive

boolean

None.

pass

string

None.

Email

string

None.

EncPasss

string

None.

Request Formats

application/json, text/json

Sample:
{
  "DriverId": 1,
  "Name": "sample string 2",
  "Phone": "sample string 3",
  "Language": "sample string 4",
  "TruckId": 1,
  "CarrierAssignId": 1,
  "CreatedBy": 1,
  "CreatedDate": "2025-12-10T07:45:38.1998361-08:00",
  "IsActive": true,
  "pass": "sample string 7",
  "Email": "sample string 8",
  "EncPasss": "sample string 9"
}

application/xml, text/xml

Sample:
<tblDriver xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApplication1.Models">
  <CarrierAssignId>1</CarrierAssignId>
  <CreatedBy>1</CreatedBy>
  <CreatedDate>2025-12-10T07:45:38.1998361-08:00</CreatedDate>
  <DriverId>1</DriverId>
  <Email>sample string 8</Email>
  <EncPasss>sample string 9</EncPasss>
  <IsActive>true</IsActive>
  <Language>sample string 4</Language>
  <Name>sample string 2</Name>
  <Phone>sample string 3</Phone>
  <TruckId>1</TruckId>
  <pass>sample string 7</pass>
</tblDriver>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'tblDriver'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.