Schedule a meeting

Shipment

Update External Tracking

This service updates the external tracking.

URL

PROD https://api.skypostal.com/

TEST https://api-test.skypostal.com/

Endpoint

POST /wcf-services/service-shipment.svc/shipment/update-external-tracking

Request Credentials

Parameters

user_info

Object - Required

User Info Definition.

trck_nmr_fol

Integer - Required

tracking_number from the package to which the invoice has to be associated.

copa_id

Integer - Required

Client identificator provided by Skypostal.

new_external_tracking

Integer - Required

new_external_tracking_number new value of tracking_number.

User Info Definition

Parameters

user_code

Integer - Required

This is the user code provided by Skypostal.

user_key

String - Required

This is the app key provided by Skypostal.

app_key

String - Required

This is the app key provided by Skypostal.

Remember

user_code, user_key, app_key and copa_id are generic credentials, make sure to request your own for TEST and PROD environemnts

The command should be run as in the following example:

{
    "user_info": {
      "user_code": 123123,
      "user_key": "ok",
      "app_key": "ok"
    },
    "trck_nmr_fol": 15281450,
    "copa_id": 616,
    "new_external_tracking": "TESTCO-322-NEW2"
}

The command will return the following format:

{
  "data": [
    {
      "_verify": true,
      "updated_rows": 5,
      "additional_info": null,
      "error": null
    }
  ],
  "additional_info": null,
  "error": null
}