GetPackingSlipTemplate

This method is called after a user connects their store, it should provide html templates to use for packing slips. This method might return a static store wide template or call out to third party api's to get customer specific templates.

Request
Request Body schema: application/json
transaction_id
required
string <guid>

A randomly generated transaction ID, used to correlate the request and response

required
object

The authorization information necessary to fulfill this request.

version
required
string
Default: "shipstation"

This contains the desired version being requested

Value: "shipstation"
size
required
string

This is the size of packing slip that is being requested by the platform

Enum: "four_by_six_inches" "letter"
Responses
200

OK

400

A response to indicate that there was either a module level client error or an external client error.

401

A response to indicate that the request failed to authenticate with the shipping provider.

404

A response to indicate that the module does not implement this endpoint.

429

A response indicates that the shipping service provider has denied a request due to too many requests.

500

A response indicating a server level error with the module.

520

A response indicating a server level error with the external world.

post/get_packing_slip_template
Request samples
application/json
{
  • "transaction_id": "string",
  • "auth": {
    },
  • "version": "shipstation",
  • "size": "letter"
}
Response samples
application/json
{
  • "packing_slip_template": {
    }
}