Retrieves a participant's video URL.
2019 Update: To execute this call successfully, include either the cons_id parameter, or have the logged-in participant whose video URL is being retrieved make this call. If the participant is logged-in and the cons_id value is included, the call returns the URL for the participant specified in the cons_id parameter. When both a cons_id is provided and a logged-in participant makes the call, the participant's constituent ID that is in the parameter is used.
Client Servlet | Server Servlet | HTTP Methods Supported | Requires Authentication |
---|---|---|---|
CRTeamraiserAPI | None. | POST | No. |
See topic Common Parameters.
Optional. The constituent ID of the specific participant whose personal video URL is being retrieved. Authentication of this logged-in participant is not required as long as this value is included in the call. If this value is included and the call is made by a different logged-in participant, the returned URL is for the participant specified in this parameter.
Type xsd:nonNegativeInteger.
Required. The TeamRaiser event ID.
Type xsd:nonNegativeInteger.
Optional. When not using the cons_id parameter, you must provide either this parameter or the sso_auth_token parameter. If using this parameter, you must specify an auth token generated by an embedded [[S86]] session tag in a Luminate web page.
Optional. When not using the cons_id parameter, you must provide either this parameter or the auth parameter. If using this parameter, you must specify a valid session authentication token returned by login, authenticateUser, or getSingleSignOnToken.
See topic HTTP Status Codes.
XML response<?xml version="1.0" encoding="UTF-8"?> <getPersonalVideoUrlResponse 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"> <videoUrl>http://www.youtube.com/watch?v=3eZTh94Fapg</videoUrl> </getPersonalVideoUrlResponse>JSON response
{"getPersonalVideoUrlResponse":{"videoUrl":"http://www.youtube.com/watch?v=3eZTh94Fapg"}}