ShipNitro
  1. v2
ShipNitro
  • Authentication
  • API v2
    • Getting Shipment Rates
      POST
    • Retrieve Shipment Details
      GET
    • Creating Shipment Labels
      POST
    • Get Current Credit
      GET
    • Getting Tracking number status
      POST
  • API v1 - deprecated do not use
    • Get Labels
      POST
    • Get Rates
      POST
    • Create Label
      POST
    • Get Current Credit
      GET
  • Callbacks
    • v2
      • Customer Create Label Callback
        POST
    • v1 - deprecated do not use
      • Callback Part 1
  1. v2

Customer Create Label Callback

Developing
POST
{{customer_callback_url}}

Request

Body Params application/json
boxId
string 
required
shipmentDetailsLink
string 
required
Link to the shipment Please refer to API v2 - Retrieve Shipment Details
Example
{
    "boxId": "string",
    "shipmentDetailsLink": "string"
}

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request POST '{{customer_callback_url}}' \
--header 'Content-Type: application/json' \
--data-raw '{
    "boxId": "string",
    "shipmentDetailsLink": "string"
}'

Responses

🟢200Success
application/json
Body
string 
required
Example
{
    "": "string"
}
Previous
Callbacks
Next
v1 - deprecated do not use
Built with