Provides detailed information about a participation type.
| Client Servlet | Server Servlet | HTTP Methods Supported | Requires Authentication |
|---|---|---|---|
| CRTeamraiserAPI | None. | POST | No. |
See topic Common Parameters.
Required. The TeamRaiser event ID.
Type xsd:nonNegativeInteger.
Optional. The unique ID of the participation type. If none is provided, the type you registered for will be used.
See topic HTTP Status Codes.
XML response
<?xml version="1.0" encoding="UTF-8"?>
<getParticipationTypeResponse 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">
<participationType>
<name>Sample Participation Type</name>
<description>Sample Description</description>
<fee>$10.00</fee>
<id>1323</id>
</participationType>
</getParticipationTypeResponse>
JSON response
{"getParticipationTypeResponse":{"participationType":{"id":"1323","fee":"$10.00","description":"Sample Description","name":"Sample Participation Type"}}}