-
Please how do I specify the value in the patch request below. patchService.listingsItemPatchRequest.patches.Add(new PatchOperation() { op = Op.replace,path = "/attributes/fulfillment_availability" ,value=new List() { new FulfillmentAvailability"DEFAULT",4) } } ); I get this error message: " The field 'fulfillment_channel_code' for the attribute 'fulfillment_availability' does not have enough values. The required minimum is '1' value(s)" Thank you |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I figured it out. Value accepts an anonymous object and not a type object so I modify it as shown below |
Beta Was this translation helpful? Give feedback.
I figured it out. Value accepts an anonymous object and not a type object so I modify it as shown below