Skip to main content
GET
/
api
/
Communication
/
{communicationId}
Get Communication
curl --request GET \
  --url https://api.virtuoussoftware.com/api/Communication/{communicationId} \
  --header 'Authorization: Bearer <token>'
{
  "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.

Path Parameters

communicationId
string
required

(Required) The communication identifier.

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