Skip to main content
POST
/
api
/
EmailList
Add Individuals to an Email List
curl --request POST \
  --url https://api.virtuoussoftware.com/api/EmailList \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "emailListIds": [
    "<integer>",
    "<integer>"
  ],
  "contactIndividualIds": [
    "<integer>",
    "<integer>"
  ]
}
'
"<object>"

Authorizations

Authorization
string
header
required

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

Body

application/json
emailListIds
string[]
contactIndividualIds
string[]

Response

OK

The response is of type string.

Last modified on April 24, 2026