Skip to main content

v2/deleteconnote [DEPRECATED]

Less than 1 minute

v2/deleteconnote [DEPRECATED]

Description

This endpoint is deprecated, please use DELETE api/shipments instead.

Request

  • Method: POST
  • Content Type: application/json
  • URL: https://api.gosweetspot.com/v2/deleteconnote

Headers

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

Parameters

The body of the message should be sent as an JSON array.

A JSON list of consignment numbers.

A maximum of 50 consignments can be deleted per call.

Return format

A JSON object array, with consignment number and associated outcome

Request example

curl --location --request POST 'https://api.gosweetspot.com/v2/deleteconnote' \
--header 'Content-Type: application/json' \
--header 'access_key: ' \
--header 'site_id: ' \
--data '[
    "SSPOT014115",
    "SSPOT014114",
    "SSPOT014113",
    "SSPOT014112"
]'

Response example

{
  "SSPOT014112": "Deleted",
  "SSPOT014113": "Deleted",
  "SSPOT014114": "Cannot be deleted. Already deleted.",
  "SSPOT014115": "Cannot be deleted. Already deleted."
}
Last update: