Skip to main content
POST
/
api
/
Contact
/
Search
Find all Contacts that match, fully or partially, the given search parameters
curl --request POST \
  --url https://api.virtuoussoftware.com/api/Contact/Search \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "search": "Weyland"
}
'
{
  "list": [
    {
      "individualId": 1123,
      "name": "Charles Bishop Weyland",
      "id": 1111,
      "contactType": "Organization",
      "contactName": "Weyland-Yutani Corporation",
      "address": "Tokyo, Japan",
      "email": "inquiries@weyland-yutani.com",
      "phone": "800-555-1234",
      "contactViewUrl": "https://api.virtuoussoftware.com/api/Contact/1111"
    },
    {
      "individualId": 1344,
      "name": "Carter Burke",
      "id": 1233,
      "contactType": "Household",
      "contactName": "Carter Burke",
      "address": null,
      "email": "carter.burke@weyland-yutani.com",
      "phone": "623-555-2933",
      "contactViewUrl": "https://api.virtuoussoftware.com/api/Contact/1233"
    }
  ],
  "total": 2
}

Authorizations

Authorization
string
header
required

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

Query Parameters

skip
string

The number of records to skip. Default = 0.

take
string

The number of records to take. Default = 10.

Body

application/json

Response

200 - application/json

OK

list
object[]
total
integer
Last modified on June 5, 2026