Provides the value of one or more TeamRaiser event data parameters (EDPs).
Client Servlet | Server Servlet | HTTP Methods Supported | Requires Authentication |
---|---|---|---|
CRTeamraiserAPI | None. | GET, POST | No. |
Use this method to retrieve event setting information for a TeamRaiser event. You must use either edp_name for one event setting or edp_names for multiple event settings or an error occurs. When using edp_names, separate the values by comma.
When the requested EDP is not configured for the event, the value from the site option (SDP) is returned. If there is no SDP configured, the method returns a value of nil.
Examples of valid values for edp_name and edp_names are:
Valid values edp_type are:
See topic Common Parameters.
Required. The TeamRaiser event ID.
Type xsd:nonNegativeInteger.
Required. The name of the requested Event Data Parameter (EDP).
Optional. The comma-separated names of the requested Event Data Parameters (EDP).
Optional. This is the way the EDP will be represented. Values are: string, integer, and boolean
See topic HTTP Status Codes.
XML responseJSON response<?xml version="1.0" encoding="UTF-8"?> <getEventDataParameterResponse xsi:schemaLocation="http://convio.com/crm/v1.0 http://service.convio.net/xmlschema/crm.public.v1.xsd" xmlns="http://convio.com/crm/v1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <stringValue>Sample Value</stringValue> </getEventDataParameterResponse>
{"getEventDataParameterResponse":{"stringValue":"Sample Value"}}