PUT /v1/b2c/document/shipping_label_configurationAuthorization: Bearer <token>Content-Type: application/json| Field | Type | Description |
|---|---|---|
rtoAddressVisible | boolean | Show RTO address on the label |
sharkshipVisible | boolean | Show Sharkship branding on the label |
clientIdVisible | boolean | Show client order ID on the label |
sellerLogoVisible | boolean | Show seller logo on the label |
gstVisible | boolean | Show GST details on the label |
skuVisible | boolean | Show SKU on the label |
alterName | boolean | Use an alternate seller name on the label |
phoneVisible | boolean | Show customer phone number on the label |
sellerPhoneVisible | boolean | Show seller phone number on the label |
isAmountVisible | boolean | Show order amount on the label |
tableVisible | boolean | Show line items table on the label |
newName | string | Alternate seller name (used when alterName is true) |
labelSize | string | Label format: STANDARD, THERMAL, or 4x4 |
{ "message": "UPDATED" }.curl --location --request PUT 'https://api.sharkship.in/v1/b2c/document/shipping_label_configuration' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"rtoAddressVisible": true,
"sharkshipVisible": true,
"clientIdVisible": true,
"sellerLogoVisible": true,
"gstVisible": true,
"skuVisible": true,
"alterName": true,
"phoneVisible": true,
"sellerPhoneVisible": true,
"isAmountVisible": true,
"tableVisible": true,
"newName": "string",
"labelSize": "STANDARD"
}'{
"message": "UPDATED"
}