POST api/Common/SendCommonMessageForCustomForm
Request Information
URI Parameters
None.
Body Parameters
Collection of FormDataName | Description | Type | Additional information |
---|---|---|---|
FieldName | string |
None. |
|
FieldValue | string |
None. |
|
ProviderID | integer |
None. |
Request Formats
application/json, text/json, text/html
Sample:
[ { "FieldName": "sample string 1", "FieldValue": "sample string 2", "ProviderID": 3 }, { "FieldName": "sample string 1", "FieldValue": "sample string 2", "ProviderID": 3 } ]
application/xml, text/xml
Sample:
<ArrayOfFormData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SellersCommerce.ViewModels.Common"> <FormData> <FieldName>sample string 1</FieldName> <FieldValue>sample string 2</FieldValue> <ProviderID>3</ProviderID> </FormData> <FormData> <FieldName>sample string 1</FieldName> <FieldValue>sample string 2</FieldValue> <ProviderID>3</ProviderID> </FormData> </ArrayOfFormData>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.