PUT 3dCartWebAPI/v1/Products/{catalogid}/EProducts


Updates a collection of eproducts from a specific Product

Request Information

URI Parameters

NameDescriptionTypeAdditional information
catalogid

CatalogID

integer

Required

Body Parameters

A Json or XML object containing the new features

Collection of EProduct
NameDescriptionTypeAdditional information
FileNumber

integer

None.

FilePath

string

None.

Request Formats

application/json, text/json

Sample:
[
  {
    "FileNumber": 1,
    "FilePath": "sample string 1"
  },
  {
    "FileNumber": 1,
    "FilePath": "sample string 1"
  }
]

application/xml, text/xml

Sample:
<ArrayOfEProduct xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <EProduct>
    <FileNumber>1</FileNumber>
    <FilePath>sample string 1</FilePath>
  </EProduct>
  <EProduct>
    <FileNumber>1</FileNumber>
    <FilePath>sample string 1</FilePath>
  </EProduct>
</ArrayOfEProduct>

Sample Request


Please click here to download the C# Rest API Client project from GitHub.
not yet available
not yet available

Response Information

application/json, text/json

Sample:
[
  {
    "Key":"FileNumber",
    "Value":"1234",
    "Status":"200",
    "Message":"updated successfully",
  }
]
							

Resource Description

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.