POST api/MotorTruck/Insert
Insert/Update motor truck cargo.
Request Information
URI Parameters
None.
Body Parameters
MotorTruckCargoData| Name | Description | Type | Additional information |
|---|---|---|---|
| DatabaseId | globally unique identifier |
None. |
|
| CommoditiesHauled | string |
None. |
|
| Hazardous | boolean |
None. |
|
| AverageValue | decimal number |
None. |
|
| MaximumValue | decimal number |
None. |
|
| PercentOfRevenue | decimal number |
None. |
|
| InsuredDatabaseId | globally unique identifier |
None. |
|
| InsuredEmail | string |
None. |
|
| InsuredFirstName | string |
None. |
|
| InsuredLastName | string |
None. |
|
| InsuredCommercialName | string |
None. |
|
| CreateDate | date |
None. |
|
| ChangeDate | date |
None. |
|
| Active | boolean |
None. |
|
| Policies | Collection of globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{
"databaseId": "91970b78-97c6-4d35-9b92-857d5082ba20",
"commoditiesHauled": "sample string 2",
"hazardous": true,
"averageValue": 1.0,
"maximumValue": 1.0,
"percentOfRevenue": 1.0,
"insuredDatabaseId": "e5f531ed-8e20-43ff-9eb5-abf46b821a6c",
"insuredEmail": "sample string 3",
"insuredFirstName": "sample string 4",
"insuredLastName": "sample string 5",
"insuredCommercialName": "sample string 6",
"createDate": "2026-02-18T02:36:53.4250331-06:00",
"changeDate": "2026-02-18T02:36:53.4250331-06:00",
"active": true,
"policies": [
"79441cbe-7f44-40cd-9f9c-2c6a90f2229e",
"40885f27-c3f8-4c48-b9be-89e6b0577ece"
]
}
application/xml, text/xml
Sample:
<MotorTruckCargoData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessEntities.NowCertsFulcrum">
<Active>true</Active>
<AverageValue>1</AverageValue>
<ChangeDate>2026-02-18T02:36:53.4250331-06:00</ChangeDate>
<CommoditiesHauled>sample string 2</CommoditiesHauled>
<CreateDate>2026-02-18T02:36:53.4250331-06:00</CreateDate>
<DatabaseId>91970b78-97c6-4d35-9b92-857d5082ba20</DatabaseId>
<Hazardous>true</Hazardous>
<InsuredCommercialName>sample string 6</InsuredCommercialName>
<InsuredDatabaseId>e5f531ed-8e20-43ff-9eb5-abf46b821a6c</InsuredDatabaseId>
<InsuredEmail>sample string 3</InsuredEmail>
<InsuredFirstName>sample string 4</InsuredFirstName>
<InsuredLastName>sample string 5</InsuredLastName>
<MaximumValue>1</MaximumValue>
<PercentOfRevenue>1</PercentOfRevenue>
<Policies xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>79441cbe-7f44-40cd-9f9c-2c6a90f2229e</d2p1:guid>
<d2p1:guid>40885f27-c3f8-4c48-b9be-89e6b0577ece</d2p1:guid>
</Policies>
</MotorTruckCargoData>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
NowCertsApiResultWithDatabaseId| Name | Description | Type | Additional information |
|---|---|---|---|
| DatabaseId | globally unique identifier |
None. |
|
| Status | ApiStatus |
None. |
|
| Message | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"databaseId": "61805c99-7d72-4739-b0e8-56cc7f20a059",
"status": 0,
"message": "sample string 2"
}
application/xml, text/xml
Sample:
<NowCertsApiResultWithDatabaseId xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessEntities.NowCertsFulcrum"> <Message>sample string 2</Message> <Status>Error</Status> <DatabaseId>61805c99-7d72-4739-b0e8-56cc7f20a059</DatabaseId> </NowCertsApiResultWithDatabaseId>