Skip to main content
GET
/
api
/
ContactMethod
/
{contactMethodId}
Get a Contact Method
curl --request GET \
  --url https://api.virtuoussoftware.com/api/ContactMethod/{contactMethodId} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<integer>",
  "type": "<string>",
  "value": "<string>",
  "isOptedIn": "<boolean>",
  "isPrimary": "<boolean>",
  "canBePrimary": "<boolean>",
  "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

contactMethodId
string
required

(Required) The contact method identifier.

Response

OK

id
string
type
string
value
string
isOptedIn
string
isPrimary
string
canBePrimary
string
createDateTimeUtc
string
createdByUser
string
modifiedDateTimeUtc
string
modifiedByUser
string
Last modified on June 5, 2026