POST api/v2.0/Volunteer/AddToPoolByLegacyKey?legacyContactKey={legacyContactKey}
Add a new user to the General Volunteer Pool. Can only be accessed by an Admin user.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| legacyContactKey |
LegacyContactKey (Source System ID) of the user to add to the Volunteer Pool. |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
Volunteer| Name | Description | Type | Additional information |
|---|---|---|---|
| VolunteerKey |
The Unique Identifier for a Volunteer. |
globally unique identifier |
None. |
| ContactKey |
The Unique Identifier for the Contact associated with this Volunteer record. |
globally unique identifier |
None. |
| VolunteerOpportunityTravelKey |
The Unique Identifier for the Travel Information for this Volunteer record. |
globally unique identifier |
None. |
| Bio |
Volunteer Biography information. |
string |
None. |
| StartOn |
Volunteer availability start date. |
date |
None. |
| EndOn |
Volunteer availability end date. |
date |
None. |
| VolunteerExperienceLevel |
Level of Volunteer Experience. |
VolunteerExperienceLevel |
None. |
| VolunteerOpportunityTravel |
Volunteer Travel preferences. |
VolunteerOpportunityTravel |
None. |
Response Formats
application/json, text/json
Sample:
{
"VolunteerKey": "5dd20f3b-c654-4bae-94cd-fbb1772575e7",
"ContactKey": "8271f17d-86c8-4767-95fb-1faeaa512048",
"VolunteerOpportunityTravelKey": "d0b7c8e2-0209-4e12-a9c8-41be8e8f295c",
"Bio": "sample string 4",
"StartOn": "2025-10-29T13:50:12.0548845Z",
"EndOn": "2025-10-29T13:50:12.0548845Z",
"VolunteerExperienceLevel": {
"ExperienceLevel": "sample string 1",
"SkillsMultiplier": 2.0,
"HourlyRate": 1.0
},
"VolunteerOpportunityTravel": {
"Description": "sample string 1",
"Distance": 2
}
}
application/xml, text/xml
Sample:
<Volunteer xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HigherLogic.API.Models.Enterprise.Volunteer">
<Bio>sample string 4</Bio>
<ContactKey>8271f17d-86c8-4767-95fb-1faeaa512048</ContactKey>
<EndOn>2025-10-29T09:50:12.0548845-04:00</EndOn>
<StartOn>2025-10-29T09:50:12.0548845-04:00</StartOn>
<VolunteerExperienceLevel>
<ExperienceLevel>sample string 1</ExperienceLevel>
<HourlyRate>1</HourlyRate>
<SkillsMultiplier>2</SkillsMultiplier>
</VolunteerExperienceLevel>
<VolunteerKey>5dd20f3b-c654-4bae-94cd-fbb1772575e7</VolunteerKey>
<VolunteerOpportunityTravel>
<Description>sample string 1</Description>
<Distance>2</Distance>
</VolunteerOpportunityTravel>
<VolunteerOpportunityTravelKey>d0b7c8e2-0209-4e12-a9c8-41be8e8f295c</VolunteerOpportunityTravelKey>
</Volunteer>