Create carrier service
POST/openapi/2026-07/carrier_services
Enables users to create a new carrier service for calculating shipping rates.
Request
- application/json
- Body
- Example
Bodyrequired
carrier_service objectrequired
Carrier service data to create
Carrier service name (used as both English and Chinese names internally)
Callback URL for shipping rate calculation. Shoplazza will call this URL when calculating rates
Unique code representing the carrier service, for example, "dhl"
Whether to enable the carrier service
URL of the carrier service's logo
Brief description of the carrier service
{
"carrier_service": {
"name": "string",
"callback_url": "string",
"carrier_code": "string",
"active": true,
"logo": "string",
"short_desc": "string"
}
}
Responses
- 200
OK
- application/json
- Schema
- Example
Schema
error code
error message
data object
carrier_service object
The created carrier service
Carrier service ID
Name of the carrier service
Whether the carrier service is active
Callback URL for rate calculation
Permission scopes (comma-separated)
Carrier service code
Logo URL
Brief description of the carrier service
Creation time, in ISO-8601 format
Last update time, in ISO-8601 format
{
"code": "string",
"message": "string",
"data": {
"carrier_service": {
"id": "string",
"name": "string",
"active": true,
"callback_url": "string",
"scopes": "string",
"carrier_service_code": "string",
"logo": "string",
"short_desc": "string",
"created_at": "string",
"updated_at": "string"
}
}
}