PUT /dropship-provider-shipping-fields/{id}.json
Path parameters
-
id
integer(int64) Required Numeric ID of the instance
Minimum value is
1
.
Body
Required
-
columnType
string | null Required Column type
Values are
attribute
orplaceholder
. Default value isattribute
. -
createdAt
string(date-time) Created at
-
dropshipProviderId
integer(int32) Required Dropship provider
-
enabled
boolean | null Required Enabled
Default value is
true
. -
id
integer(int32) Id
-
name
string | null Name
-
purpose
string | null Purpose
Values are
channelReference
,internalReference
,invoiceAmount
,price
,reference
,serviceLevel
,sku
,quantity
,trackingCompany
,trackingNumber
, orvendorExternalId
. -
updatedAt
string(date-time) Updated at
PUT
/dropship-provider-shipping-fields/{id}.json
curl \
--request PUT 'http://api.example.com/v1/dropship-provider-shipping-fields/{id}.json' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{"columnType":"attribute","createdAt":"2025-05-04T09:42:00Z","dropshipProviderId":42,"enabled":true,"id":42,"name":"string","purpose":"channelReference","updatedAt":"2025-05-04T09:42:00Z"}'
Request examples
{
"columnType": "attribute",
"createdAt": "2025-05-04T09:42:00Z",
"dropshipProviderId": 42,
"enabled": true,
"id": 42,
"name": "string",
"purpose": "channelReference",
"updatedAt": "2025-05-04T09:42:00Z"
}