POST api/v1/communications/createReviewRequestCommunication

Request Information

URI Parameters

None.

Body Parameters

CreateCommunicationDto
NameDescriptionTypeAdditional information
ChannelCommunicationCode

string

None.

TargetCustomerId

string

None.

SendNow

boolean

None.

SendDate

date

None.

Request Formats

application/json, text/json

Sample:
{
  "channelCommunicationCode": "sample string 1",
  "targetCustomerId": "sample string 2",
  "sendNow": true,
  "sendDate": "2026-02-04T03:00:23.5901062+00:00"
}

application/xml, text/xml

Sample:
<CreateCommunicationDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Domain.Dtos">
  <ChannelCommunicationCode>sample string 1</ChannelCommunicationCode>
  <SendDate>2026-02-04T03:00:23.5901062+00:00</SendDate>
  <SendNow>true</SendNow>
  <TargetCustomerId>sample string 2</TargetCustomerId>
</CreateCommunicationDto>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.