POST api/Common/SendCCMMail

Request Information

URI Parameters

None.

Body Parameters

InboundViewModel
NameDescriptionTypeAdditional information
CreatedBy

integer

None.

ProviderID

integer

None.

GroupStoreID

integer

None.

ProviderTypeID

byte

None.

Message

string

None.

Heading

string

None.

Subject

string

None.

ToEmail

string

None.

CCEmail

string

None.

AttachHasFilePath

boolean

None.

Request Formats

application/json, text/json, text/html

Sample:
{
  "CreatedBy": 1,
  "ProviderID": 2,
  "GroupStoreID": 3,
  "ProviderTypeID": 64,
  "Message": "sample string 4",
  "Heading": "sample string 5",
  "Subject": "sample string 6",
  "ToEmail": "sample string 7",
  "CCEmail": "sample string 8",
  "AttachHasFilePath": true
}

application/xml, text/xml

Sample:
<InboundViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SellersCommerce.ViewModels.Common">
  <AttachHasFilePath>true</AttachHasFilePath>
  <CCEmail>sample string 8</CCEmail>
  <CreatedBy>1</CreatedBy>
  <GroupStoreID>3</GroupStoreID>
  <Heading>sample string 5</Heading>
  <Message>sample string 4</Message>
  <ProviderID>2</ProviderID>
  <ProviderTypeID>64</ProviderTypeID>
  <Subject>sample string 6</Subject>
  <ToEmail>sample string 7</ToEmail>
</InboundViewModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

string

Response Formats

application/json, text/json, text/html

Sample:
"sample string 1"

application/xml, text/xml

Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>