Coyote Logistics · Schema

LoadRequestStatus

Load status response

freight brokeragelogisticstruckloadLTLless-than-truckloadshippingsupply chainfreight quotesshipment trackingload management3PLcustoms brokeragecarrier APIshipper API

Properties

Name Type Description
loadId integer Coyote Load Id
status object
message string Success/Failure message
trackingUri string Tracking Uri
View JSON Schema on GitHub

JSON Schema

loadrequeststatus.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "LoadRequestStatus",
  "x-source-schema": "Coyote.Systems.ExternalApi.Contracts.Models.LoadBuilding.LoadRequestStatus",
  "type": "object",
  "properties": {
    "loadId": {
      "type": "integer",
      "description": "Coyote Load Id",
      "format": "int32"
    },
    "status": {
      "$ref": "#/components/schemas/Coyote.Systems.ExternalApi.Contracts.Models.LoadBuildStatus"
    },
    "message": {
      "type": "string",
      "description": "Success/Failure message",
      "nullable": true
    },
    "trackingUri": {
      "type": "string",
      "description": "Tracking Uri",
      "nullable": true
    }
  },
  "additionalProperties": false,
  "description": "Load status response"
}