POST api/customfield/value/addorupdate

Request Information

URI Parameters

None.

Body Parameters

Collection of CustomFieldValueEntity
NameDescriptionTypeAdditional information
CustomFieldValueId

integer

None.

CustomFieldData

string

None.

CreatedTime

date

None.

UpdatedTime

date

None.

VendorId

integer

None.

ProductId

integer

None.

CustomFieldId

integer

None.

Request Formats

application/json, text/json

Sample:
[
  {
    "CustomFieldValueId": 1,
    "CustomFieldData": "sample string 2",
    "CreatedTime": "2025-12-31T16:37:11.675267+05:30",
    "UpdatedTime": "2025-12-31T16:37:11.675267+05:30",
    "VendorId": 4,
    "ProductId": 1,
    "CustomFieldId": 5
  },
  {
    "CustomFieldValueId": 1,
    "CustomFieldData": "sample string 2",
    "CreatedTime": "2025-12-31T16:37:11.675267+05:30",
    "UpdatedTime": "2025-12-31T16:37:11.675267+05:30",
    "VendorId": 4,
    "ProductId": 1,
    "CustomFieldId": 5
  }
]

application/xml, text/xml

Sample:
<ArrayOfCustomFieldValueEntity xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/pos_crm_api_DAL.Entities">
  <CustomFieldValueEntity>
    <CreatedTime>2025-12-31T16:37:11.675267+05:30</CreatedTime>
    <CustomFieldData>sample string 2</CustomFieldData>
    <CustomFieldId>5</CustomFieldId>
    <CustomFieldValueId>1</CustomFieldValueId>
    <ProductId>1</ProductId>
    <UpdatedTime>2025-12-31T16:37:11.675267+05:30</UpdatedTime>
    <VendorId>4</VendorId>
  </CustomFieldValueEntity>
  <CustomFieldValueEntity>
    <CreatedTime>2025-12-31T16:37:11.675267+05:30</CreatedTime>
    <CustomFieldData>sample string 2</CustomFieldData>
    <CustomFieldId>5</CustomFieldId>
    <CustomFieldValueId>1</CustomFieldValueId>
    <ProductId>1</ProductId>
    <UpdatedTime>2025-12-31T16:37:11.675267+05:30</UpdatedTime>
    <VendorId>4</VendorId>
  </CustomFieldValueEntity>
</ArrayOfCustomFieldValueEntity>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

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.