Skip to main content
POST
/
api
/
Communication
Create Communication
curl --request POST \
  --url https://api.virtuoussoftware.com/api/Communication \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "campaignId": "<integer>",
  "channelType": "<string>",
  "communicationType": "<string>",
  "communicationStep": "<string>",
  "startDateTime": "<dateTime>",
  "ownerId": "<integer>",
  "givingGoal": "<double>",
  "newGiverGoal": "<integer>",
  "internalCostEstimate": "<double>",
  "vendorCostEstimate": "<double>",
  "networkReach": "<integer>"
}
'
{
  "communicationId": "<integer>",
  "name": "<string>",
  "campaignId": "<integer>",
  "campaignName": "<string>",
  "channelType": "<string>",
  "communicationType": "<string>",
  "startDateTimeUtc": "<dateTime>",
  "givingGoal": "<decimal>",
  "projectId": "<integer>",
  "projectCode": "<string>",
  "projectName": "<string>",
  "createDateTimeUtc": "<dateTime>",
  "createdByUser": "<string>",
  "modifiedDateTimeUtc": "<dateTime>",
  "modifiedByUser": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
name
string
campaignId
string
channelType
string
communicationType
string
communicationStep
string
startDateTime
string
ownerId
string
givingGoal
string
newGiverGoal
string
internalCostEstimate
string
vendorCostEstimate
string
networkReach
string

Response

OK

communicationId
string
name
string
campaignId
string
campaignName
string
channelType
string
communicationType
string
startDateTimeUtc
string
givingGoal
string
projectId
string
projectCode
string
projectName
string
createDateTimeUtc
string
createdByUser
string
modifiedDateTimeUtc
string
modifiedByUser
string
Last modified on June 5, 2026