Body
Required
-
carrierType
string | null Carrier type
Values are
australia_post
,canada_post
,deutsche_post
,dhl_germany
,dhl_ecommerce
,dhl_express
,fedex
,gls_fr
,lasership
,mondial_relay
,newgistics
,ontrac
,purolator
,ups
, orusps
. -
externalId
string | null External
-
name
string | null Name
-
platform
string | null Required Platform
Values are
shippo
ormanual
. Default value ismanual
.
POST
/carriers.json
curl \
--request POST 'http://api.example.com/v1/carriers.json' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{"carrierType":"australia_post","externalId":"string","name":"string","platform":"manual"}'
Request examples
{
"carrierType": "australia_post",
"externalId": "string",
"name": "string",
"platform": "manual"
}
Response examples (200)
{
"carrierType": "australia_post",
"createdAt": "2025-05-04T09:42:00Z",
"externalId": "string",
"id": 42,
"name": "string",
"platform": "manual",
"updatedAt": "2025-05-04T09:42:00Z"
}