POST /custom-field-dropshipments.json
Body
Required
-
customFieldId
integer(int32) Required Custom field
-
dropshipmentId
integer(int32) Required Dropshipment
-
value
string | null Value
-
values
array[string] | null Values
POST
/custom-field-dropshipments.json
curl \
-X POST http://api.example.com/v1/custom-field-dropshipments.json \
-H "Authorization: Bearer $ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{"customFieldId":42,"dropshipmentId":42,"object":{},"value":"string","values":["string"]}'
Request example
{
"customFieldId": 42,
"dropshipmentId": 42,
"object": {},
"value": "string",
"values": [
"string"
]
}
Response examples (200)
{
"createdAt": "2024-05-04T09:42:00+00:00",
"customFieldId": 42,
"dropshipmentId": 42,
"id": 42,
"object": {},
"updatedAt": "2024-05-04T09:42:00+00:00",
"value": "string",
"values": [
"string"
]
}