Skip to main content
POST
/
api
/
VolunteerOpportunity
/
{volunteerOpportunityId}
/
Organizers
Create a Volunteer Organizer
curl --request POST \
  --url https://api.virtuoussoftware.com/api/VolunteerOpportunity/{volunteerOpportunityId}/Organizers \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "contactIndividualId": "<integer>"
}
'
{
  "id": "<integer>",
  "volunteerOrganizerUrl": "<string>",
  "contactId": "<integer>",
  "displayName": "<string>",
  "firstName": "<string>",
  "avatarUrl": "<string>",
  "primaryPhone": "<string>",
  "primaryEmail": "<string>",
  "contactUrl": "<string>",
  "volunteerOpportunityUrl": "<string>"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

volunteerOpportunityId
string
required

(Required) The volunteer opportunity identifier.

Body

application/json
contactIndividualId
string

Response

OK

id
string
volunteerOrganizerUrl
string
contactId
string
displayName
string
firstName
string
avatarUrl
string
primaryPhone
string
primaryEmail
string
contactUrl
string
volunteerOpportunityUrl
string
Last modified on June 5, 2026