Skip to main content
POST
/
api
/
Volunteer
/
Query
Query Volunteers
curl --request POST \
  --url https://api.virtuoussoftware.com/api/Volunteer/Query \
  --header 'Authorization: Bearer <token>'
{
  "list": [
    {
      "id": 0,
      "volunteerUrl": "string",
      "createDateTimeUtc": "dateTime",
      "createdByUser": "string",
      "modifiedDateTimeUtc": "dateTime",
      "modifiedByUser": "string",
      "contactId": 0,
      "contactIndividualId": 0,
      "contactUrl": "string",
      "displayName": "string",
      "firstName": "string",
      "avatarUrl": "string",
      "primaryPhone": "string",
      "primaryEmail": "string",
      "totalHours": 0,
      "timesVolunteered": 0,
      "volunteerAttendanceUrl": "string",
      "volunteerOpportunityId": 0,
      "volunteerOpportunityUrl": "string"
    }
  ],
  "total": 0
}

Authorizations

Authorization
string
header
required

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

Response

200 - application/json

Ok

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