Skip to main content

ratesquery/printcheapestcourier

About 2 min

ratesquery/printcheapestcourier

Description

This interface allows you to create a shipment with the cheapest courier option available.

Upon creating the shipment, the print command can also be automatically initiated. This print command requires the Print Agent to be installed and available.

Request

  • Method: POST
  • Content Type: application/json
  • URL: https://api.gosweetspot.com/ratesquery/printcheapestcourier

Headers

  • access_key : your unqiue api key provided by GSS.
  • site_id : which site you are requesting action for.

Parameters

ParameterTypeDescription
CarrierstringName of the carrier to use for the shipment. You can query the POST api/availableservices endpoint to find the valid carrier names. You can also pass '*' to choose the cheapest of any carrier.
ServicestringCarrier service name, for which the shipment should be created for. If not supplied, the cheapest price option is selected
originobjectLeave blank when using site address, or provide one for freight forwards (Contact Model).
destinationobjectRecepient address details (Contact Model).
packagesobject listArray of package sizes (Rate Package Model).
issaturdaydeliverybooleanIs saturday delivery required?
issignaturerequiredbooleanIs signature on delivery required?
dutiesandtaxesbyreceiverbooleanWhere duties are due, is the receiver paying for these?
deliveryreferencestringOrder reference, max length is 50.
commoditiesobject listCustoms declared commoditiy information. Only required for international shipments.
printtoprinterstringUse "true" to send a print request to your default printer. Use "false" indicates no printing is required. You can also put a printer name here and the print request would be sent directly to that printer
outputsstring listoptional - JSON string list. Returns output of label as a PNG or PDF. Acceptable value are Print Output Formats

Return format

A JSON object with the created shipment details.

Response

AttributeTypeDescription
carrierstringInternal system carrier identifier.
carriernamestringCourier provider name.
isfreightforwardbooleanIs shipment a freight forward shipment.
messagestringAction outcome message.
errorsstring listList of error messages.
siteidintegerAccount site id.
consignmentsobject listJSON object arrary or consignments created. Generally only 1 is created, however were a split is required, more could be created (Consignment Model)

Request example

curl --location --request POST 'https://api.gosweetspot.com/api/rates' \
--header 'Content-Type: application/json' \
--header 'access_key: nikhi-74-4EFF2E1BE49E807E89DF1790C4407921CD813B2C1' \
--header 'site_id: 108633' \
--data-raw '{
  "DeliveryReference": "ORDER123",
  "Destination": {
    "Id": 0,
    "Name": "DestinationName",
    "Address": {
      "BuildingName": "",
      "StreetAddress": "DestinationStreetAddress",
      "Suburb": "Avonside",
      "City": "Christchurch",
      "PostCode": "8061",
      "CountryCode": "NZ"
    },
    "ContactPerson": "DestinationContact",
    "PhoneNumber": "123456789",
    "Email": "[email protected]",
    "DeliveryInstructions": "Desinationdeliveryinstructions"
  },
  "IsSaturdayDelivery": false,
  "IsSignatureRequired": true,
  "Packages": [
    {
      "Height": 1,
      "Length": 1,
      "Id": 0,
      "Width": 10,
      "Kg": 0.1,
      "Name": "GSS-DLE SATCHEL",
      "PackageCode": "DLE",
      "Type": "Box"
    }
  ],
  "PrintToPrinter": true
}'

Response example

{
  "CarrierId": 102,
  "CarrierName": "Post Haste",
  "IsFreightForward": false,
  "IsOvernight": true,
  "IsSaturdayDelivery": false,
  "IsRural": false,
  "HasTrackPaks": true,
  "Message": "Printer invalid. Job created but not queued.",
  "Errors": [],
  "SiteId": 4180,
  "Consignments": [
    {
      "Connote": "SSPOT012863",
      "TrackingUrl": "http://gosweetspot.com/track/4180-SSPOT012863",
      "Cost": 7.52,
      "CarrierType": 13,
      "IsSaturdayDelivery": false,
      "IsRural": false,
      "IsOvernight": true,
      "HasTrackPaks": true,
      "ConsignmentId": 1830321,
      "OutputFiles": null
    }
  ],
  "Downloads": [],
  "CarrierType": 13,
  "AlertPath": null
}
Last update: