/getEventContributor
Get Event Contributor API Call
- Returns contributor data as it relates to a specific event or campaign.
Production Endpoint: https://auctionconductor.com/API/getEventContributor
Test Endpoint: https://actestserver.com/API/getEventContributor
Accepted Data
Parameter | Req’d | Format | Default | Description |
event_contributor_id | Y | Number | (none) | Event Contributor id returned by the createEventContributor call. |
Return Values
Parameter | Value | Description |
contributor_id | number | Contributor identification |
event_id | number | Event id |
contributor_types | string array | Contributor types for selected event contributor returned as array of string |
affiliation_types | string array | Affiliation types for selected event contributor returned as array of string |
sms_opt | 10 chars | Opt-in setting for optional SMS text messaging alerts. |
anonymous | boolean | Indicates if contributor wishes to remain anonymous or not |
attendees | number | Number of people attached to this single Contributor record, that are attending (event specific) |
admission_paid | boolean | If all people attached to this contributor record have paid for admission (event specific) |
meal | string | Meal selection (event specific). If not found in meal table, new type will be created |
alternate_key | string | Alternate tacking ID obtained from your database (event specific) |
reg_notes | string | Notes for check-in staff (event specific) |
group | string | Text entered by the ticket purchaser to identify a group of contributors. Typically contains the company or purchaser name. |
company_individual | string | Company or Individual designation |
checked_in | boolean | Indicates if the contributor has checked in to the event, either online via express check-in, or in-person. |
arrived | boolean | Indicates if the contributor has arrived the event, either via QR code scan, or manual lookup. |
bidding | boolean | Indicates if the contributor has placed any bids in the silent or live auctions. |
Sample Call
{
event_contributor_id: 66078
}
Sample Response
{
"contributor_id": 35669,
"event_id": 2442,
"contributor_types": [
"Patron",
"Attending"
],
"affiliation_types": [],
"sms_opt": "OPTED-IN",
"anonymous": false,
"vip": true,
"attendees": 1,
"admission_paid": false,
"meal": null,
"alternate_key": null,
"reg_notes": null,
"group": "Smith, John",
"company_individual": "individual",
"checked_in": true,
"arrived": true,
"bidding": true
}