POST /shipping-rate-mappings.json
POST /shipping-rate-mappings.json
curl \
-X POST http://api.example.com/v1/shipping-rate-mappings.json \
-H "Authorization: Bearer $ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{"channelServiceLevel":"string","provider":"usps","serviceLevel":"string"}'
Request example
{
"channelServiceLevel": "string",
"provider": "usps",
"serviceLevel": "string"
}
Response examples (200)
{
"channelServiceLevel": "string",
"createdAt": "2024-05-04T09:42:00+00:00",
"id": 42,
"provider": "usps",
"serviceLevel": "string",
"updatedAt": "2024-05-04T09:42:00+00:00"
}