Trendsic Platform Service

<back to all web services

DispatchRequestUpdateRequest

Requires Authentication
The following routes are available for this service:
PUT,OPTIONS/v1/dispatch/requests/{RequestId}
import java.math.*
import java.util.*
import java.io.InputStream
import net.servicestack.client.*


open class DispatchRequestUpdateRequest
{
    open var RequestId:Int? = null
    open var CustomerName:String? = null
    open var CustomerPhone:String? = null
    open var CustomerEmail:String? = null
    open var Cargo:String? = null
    open var Units:Int? = null
    open var FromLoc:String? = null
    open var ToLoc:String? = null
    open var Miles:Int? = null
    open var WindowText:String? = null
    open var IsUrgent:Boolean? = null
    open var Notes:String? = null
    open var RequiredRig:String? = null
    open var UnitsPerTruck:Int? = null
    open var RatePerLoad:BigDecimal? = null
    open var UrgencyPct:BigDecimal? = null
    open var CostPerLoad:BigDecimal? = null
}

open class DispatchRequestsResponse
{
    open var Requests:ArrayList<DispatchRequestView> = ArrayList<DispatchRequestView>()
    open var Request:DispatchRequestView? = null
    open var RigCounts:ArrayList<DispatchRigCountView> = ArrayList<DispatchRigCountView>()
    open var Carriers:ArrayList<DispatchCarrierPickView> = ArrayList<DispatchCarrierPickView>()
    open var QuoteLink:String? = null
    open var Delivery:String? = null
    open var ResponseStatus:ResponseStatus? = null
}

open class DispatchRequestView
{
    open var RequestId:Int? = null
    open var Code:String? = null
    open var CustomerName:String? = null
    open var CustomerPhone:String? = null
    open var CustomerEmail:String? = null
    open var Cargo:String? = null
    open var Units:Int? = null
    open var FromLoc:String? = null
    open var ToLoc:String? = null
    open var Miles:Int? = null
    open var WindowText:String? = null
    open var IsUrgent:Boolean? = null
    open var Notes:String? = null
    open var Source:String? = null
    open var Status:String? = null
    open var RequiredRig:String? = null
    open var UnitsPerTruck:Int? = null
    open var RatePerLoad:BigDecimal? = null
    open var UrgencyPct:BigDecimal? = null
    open var CostPerLoad:BigDecimal? = null
    open var LoadsNeeded:Int? = null
    open var QuoteTotal:BigDecimal? = null
    open var QuoteVersion:Int? = null
    open var QuotedUtc:Date? = null
    open var QuotedBy:String? = null
    open var AcceptTokenExpiresUtc:Date? = null
    open var AcceptedUtc:Date? = null
    open var AcceptedVia:String? = null
    open var DeclinedUtc:Date? = null
    open var DeclinedBy:String? = null
    open var DeclineReason:String? = null
    open var JobsCreated:Int? = null
    open var JobsDone:Int? = null
    open var JobsNeedDriver:Int? = null
    open var CreatedUtc:Date? = null
    open var CreatedBy:String? = null
    open var Events:ArrayList<DispatchRequestEventView> = ArrayList<DispatchRequestEventView>()
}

open class DispatchRequestEventView
{
    open var EventId:Int? = null
    open var Kind:String? = null
    open var Detail:String? = null
    open var AtUtc:Date? = null
    open var ByWho:String? = null
}

open class DispatchRigCountView
{
    open var RigType:String? = null
    open var Rigs:Int? = null
}

open class DispatchCarrierPickView
{
    open var VendorID:Int? = null
    open var VendorName:String? = null
}

Kotlin DispatchRequestUpdateRequest DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml

HTTP + XML

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

PUT /v1/dispatch/requests/{RequestId} HTTP/1.1 
Host: api.dev.dynamics.trendsic.com 
Accept: application/xml
Content-Type: application/xml
Content-Length: length

<DispatchRequestUpdateRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CRM.AgencyPlatform.API.Internal">
  <Cargo>String</Cargo>
  <CostPerLoad>0</CostPerLoad>
  <CustomerEmail>String</CustomerEmail>
  <CustomerName>String</CustomerName>
  <CustomerPhone>String</CustomerPhone>
  <FromLoc>String</FromLoc>
  <IsUrgent>false</IsUrgent>
  <Miles>0</Miles>
  <Notes>String</Notes>
  <RatePerLoad>0</RatePerLoad>
  <RequestId>0</RequestId>
  <RequiredRig>String</RequiredRig>
  <ToLoc>String</ToLoc>
  <Units>0</Units>
  <UnitsPerTruck>0</UnitsPerTruck>
  <UrgencyPct>0</UrgencyPct>
  <WindowText>String</WindowText>
</DispatchRequestUpdateRequest>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length

<DispatchRequestsResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CRM.AgencyPlatform.API.Internal">
  <Carriers>
    <DispatchCarrierPickView>
      <VendorID>0</VendorID>
      <VendorName>String</VendorName>
    </DispatchCarrierPickView>
  </Carriers>
  <Delivery>String</Delivery>
  <QuoteLink>String</QuoteLink>
  <Request>
    <AcceptTokenExpiresUtc>0001-01-01T00:00:00</AcceptTokenExpiresUtc>
    <AcceptedUtc>0001-01-01T00:00:00</AcceptedUtc>
    <AcceptedVia>String</AcceptedVia>
    <Cargo>String</Cargo>
    <Code>String</Code>
    <CostPerLoad>0</CostPerLoad>
    <CreatedBy>String</CreatedBy>
    <CreatedUtc>0001-01-01T00:00:00</CreatedUtc>
    <CustomerEmail>String</CustomerEmail>
    <CustomerName>String</CustomerName>
    <CustomerPhone>String</CustomerPhone>
    <DeclineReason>String</DeclineReason>
    <DeclinedBy>String</DeclinedBy>
    <DeclinedUtc>0001-01-01T00:00:00</DeclinedUtc>
    <Events>
      <DispatchRequestEventView>
        <AtUtc>0001-01-01T00:00:00</AtUtc>
        <ByWho>String</ByWho>
        <Detail>String</Detail>
        <EventId>0</EventId>
        <Kind>String</Kind>
      </DispatchRequestEventView>
    </Events>
    <FromLoc>String</FromLoc>
    <IsUrgent>false</IsUrgent>
    <JobsCreated>0</JobsCreated>
    <JobsDone>0</JobsDone>
    <JobsNeedDriver>0</JobsNeedDriver>
    <LoadsNeeded>0</LoadsNeeded>
    <Miles>0</Miles>
    <Notes>String</Notes>
    <QuoteTotal>0</QuoteTotal>
    <QuoteVersion>0</QuoteVersion>
    <QuotedBy>String</QuotedBy>
    <QuotedUtc>0001-01-01T00:00:00</QuotedUtc>
    <RatePerLoad>0</RatePerLoad>
    <RequestId>0</RequestId>
    <RequiredRig>String</RequiredRig>
    <Source>String</Source>
    <Status>String</Status>
    <ToLoc>String</ToLoc>
    <Units>0</Units>
    <UnitsPerTruck>0</UnitsPerTruck>
    <UrgencyPct>0</UrgencyPct>
    <WindowText>String</WindowText>
  </Request>
  <Requests>
    <DispatchRequestView>
      <AcceptTokenExpiresUtc>0001-01-01T00:00:00</AcceptTokenExpiresUtc>
      <AcceptedUtc>0001-01-01T00:00:00</AcceptedUtc>
      <AcceptedVia>String</AcceptedVia>
      <Cargo>String</Cargo>
      <Code>String</Code>
      <CostPerLoad>0</CostPerLoad>
      <CreatedBy>String</CreatedBy>
      <CreatedUtc>0001-01-01T00:00:00</CreatedUtc>
      <CustomerEmail>String</CustomerEmail>
      <CustomerName>String</CustomerName>
      <CustomerPhone>String</CustomerPhone>
      <DeclineReason>String</DeclineReason>
      <DeclinedBy>String</DeclinedBy>
      <DeclinedUtc>0001-01-01T00:00:00</DeclinedUtc>
      <Events>
        <DispatchRequestEventView>
          <AtUtc>0001-01-01T00:00:00</AtUtc>
          <ByWho>String</ByWho>
          <Detail>String</Detail>
          <EventId>0</EventId>
          <Kind>String</Kind>
        </DispatchRequestEventView>
      </Events>
      <FromLoc>String</FromLoc>
      <IsUrgent>false</IsUrgent>
      <JobsCreated>0</JobsCreated>
      <JobsDone>0</JobsDone>
      <JobsNeedDriver>0</JobsNeedDriver>
      <LoadsNeeded>0</LoadsNeeded>
      <Miles>0</Miles>
      <Notes>String</Notes>
      <QuoteTotal>0</QuoteTotal>
      <QuoteVersion>0</QuoteVersion>
      <QuotedBy>String</QuotedBy>
      <QuotedUtc>0001-01-01T00:00:00</QuotedUtc>
      <RatePerLoad>0</RatePerLoad>
      <RequestId>0</RequestId>
      <RequiredRig>String</RequiredRig>
      <Source>String</Source>
      <Status>String</Status>
      <ToLoc>String</ToLoc>
      <Units>0</Units>
      <UnitsPerTruck>0</UnitsPerTruck>
      <UrgencyPct>0</UrgencyPct>
      <WindowText>String</WindowText>
    </DispatchRequestView>
  </Requests>
  <ResponseStatus xmlns:d2p1="http://schemas.servicestack.net/types">
    <d2p1:ErrorCode>String</d2p1:ErrorCode>
    <d2p1:Message>String</d2p1:Message>
    <d2p1:StackTrace>String</d2p1:StackTrace>
    <d2p1:Errors>
      <d2p1:ResponseError>
        <d2p1:ErrorCode>String</d2p1:ErrorCode>
        <d2p1:FieldName>String</d2p1:FieldName>
        <d2p1:Message>String</d2p1:Message>
        <d2p1:Meta xmlns:d5p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
          <d5p1:KeyValueOfstringstring>
            <d5p1:Key>String</d5p1:Key>
            <d5p1:Value>String</d5p1:Value>
          </d5p1:KeyValueOfstringstring>
        </d2p1:Meta>
      </d2p1:ResponseError>
    </d2p1:Errors>
    <d2p1:Meta xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
      <d3p1:KeyValueOfstringstring>
        <d3p1:Key>String</d3p1:Key>
        <d3p1:Value>String</d3p1:Value>
      </d3p1:KeyValueOfstringstring>
    </d2p1:Meta>
  </ResponseStatus>
  <RigCounts>
    <DispatchRigCountView>
      <RigType>String</RigType>
      <Rigs>0</Rigs>
    </DispatchRigCountView>
  </RigCounts>
</DispatchRequestsResponse>