post https://{subdomain}.myclickfunnels.com/api/v2/workspaces//shipping/packages
Add a new package to a workspace
Log in to see full request history
time | status | user agent | |
---|---|---|---|
Retrieving recent requests… |
Loading…
Responses
Add a new package to a workspace
time | status | user agent | |
---|---|---|---|
Retrieving recent requests… |
xxxxxxxxxx
12curl --request POST \
--url https://myworkspace.myclickfunnels.com/api/v2/workspaces/workspace_id/shipping/packages \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--data '
{
"shipping_package": {
"package_type": "box",
"distance_unit": "in"
}
}
'
xxxxxxxxxx
18{
"id": 5,
"public_id": "njtcRG",
"package_type": "box",
"height": "4.0",
"width": "2.0",
"length": "2.0",
"distance_unit": "in",
"empty_weight": null,
"weight": "0.0",
"weight_unit": "lb",
"default_package": false,
"name": "Example Package",
"token": null,
"carrier": null,
"created_at": "2025-03-05T12:41:13.287Z",
"updated_at": "2025-03-05T12:41:13.287Z"
}