PUT /platform-shipping-mappings/{id}.json
Path parameters
-
Numeric ID of the instance
Minimum value is
1
.
Body Required
-
createdAt string(date-time)
Created at
-
Dropship provider
-
fromProvider string | null
From provider
-
fromServiceLevel string | null
From service level
-
id integer(int32)
Id
-
toCode string | null
To code
-
toProvider string | null
To provider
-
toServiceLevel string | null
To service level
-
updatedAt string(date-time)
Updated at
PUT /platform-shipping-mappings/{id}.json
curl \
-X PUT http://api.example.com/v1/platform-shipping-mappings/{id}.json \
-H "Authorization: Bearer $ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{"createdAt":"2024-05-04T09:42:00+00:00","dropshipProviderId":42,"fromProvider":"string","fromServiceLevel":"string","id":42,"toCode":"string","toProvider":"string","toServiceLevel":"string","updatedAt":"2024-05-04T09:42:00+00:00"}'
Request example
{
"createdAt": "2024-05-04T09:42:00+00:00",
"dropshipProviderId": 42,
"fromProvider": "string",
"fromServiceLevel": "string",
"id": 42,
"toCode": "string",
"toProvider": "string",
"toServiceLevel": "string",
"updatedAt": "2024-05-04T09:42:00+00:00"
}