Skip to main content
POST
/
api
/
Contact
/
Transaction
Create a Contact that will go through the import process
curl --request POST \
  --url https://api.virtuoussoftware.com/api/Contact/Transaction \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "referenceSource": "<string>",
  "referenceId": "<string>",
  "contactType": "<string>",
  "name": "<string>",
  "title": "<string>",
  "firstName": "<string>",
  "middleName": "<string>",
  "lastName": "<string>",
  "suffix": "<string>",
  "emailType": "<string>",
  "email": "<string>",
  "phoneType": "<string>",
  "phone": "<string>",
  "address1": "<string>",
  "address2": "<string>",
  "city": "<string>",
  "state": "<string>",
  "postal": "<string>",
  "country": "<string>",
  "eventId": "<integer>",
  "eventName": "<string>",
  "invited": "<boolean>",
  "rsvp": "<boolean>",
  "rsvpResponse": "<boolean>",
  "attended": "<boolean>",
  "tags": "<string>",
  "originSegmentCode": "<string>",
  "emailLists": [
    "<string>",
    "<string>"
  ],
  "customFields": "<object>",
  "volunteerAttendances": [
    {
      "volunteerOpportunityId": "<integer>",
      "volunteerOpportunityName": "<string>",
      "date": "<string>",
      "hours": "<string>"
    },
    {
      "volunteerOpportunityId": "<integer>",
      "volunteerOpportunityName": "<string>",
      "date": "<string>",
      "hours": "<string>"
    }
  ]
}
'

Authorizations

Authorization
string
header
required

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

Body

application/json
referenceSource
string
referenceId
string
contactType
string
name
string
title
string
firstName
string
middleName
string
lastName
string
suffix
string
emailType
string
email
string
phoneType
string
phone
string
address1
string
address2
string
city
string
state
string
postal
string
country
string
eventId
string
eventName
string
invited
string
rsvp
string
rsvpResponse
string
attended
string
tags
string
originSegmentCode
string
emailLists
string[]
customFields
string
volunteerAttendances
object[]

Response

200

OK

Last modified on June 5, 2026