GET api/RSVP/FindByCmsId/{id}?emailAddress={emailAddress}&contactId={contactId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | string |
Required |
|
| emailAddress | string |
None. |
|
| contactId | globally unique identifier |
None. |
Body Parameters
None.
Response Information
Resource Description
UWEORsvp| Name | Description | Type | Additional information |
|---|---|---|---|
| FirstName | string |
None. |
|
| LastName | string |
None. |
|
| PhoneNumber | string |
None. |
|
| ZipCode | string |
None. |
|
| EmailAddress | string |
None. |
|
| CMSEventId | string |
None. |
|
| EventTitle | string |
None. |
|
| EventDate | date |
None. |
|
| Location | string |
None. |
|
| EventType | string |
None. |
|
| ConfirmationSent | integer |
None. |
|
| PreferredContactMethod | string |
None. |
|
| OptInBrandEmail | boolean |
None. |
|
| CrmContactId | globally unique identifier |
None. |
|
| CrmEntityType | string |
None. |
Response Formats
application/json, text/json, text/html
Sample:
{
"FirstName": "sample string 1",
"LastName": "sample string 2",
"PhoneNumber": "sample string 3",
"ZipCode": "sample string 4",
"EmailAddress": "sample string 5",
"CMSEventId": "sample string 6",
"EventTitle": "sample string 7",
"EventDate": "2026-06-05T15:27:21.6968098-07:00",
"Location": "sample string 9",
"EventType": "sample string 10",
"ConfirmationSent": 1,
"PreferredContactMethod": "sample string 11",
"OptInBrandEmail": true,
"CrmContactId": "876ae206-9556-440e-b91e-e3e5bdf38df7",
"CrmEntityType": "sample string 13"
}
application/xml, text/xml
Sample:
<UWEORsvp xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/UWEO.CRM.API.Base.Models"> <CrmContactId>876ae206-9556-440e-b91e-e3e5bdf38df7</CrmContactId> <CrmEntityType>sample string 13</CrmEntityType> <CMSEventId>sample string 6</CMSEventId> <ConfirmationSent>1</ConfirmationSent> <EmailAddress>sample string 5</EmailAddress> <EventDate>2026-06-05T15:27:21.6968098-07:00</EventDate> <EventTitle>sample string 7</EventTitle> <EventType>sample string 10</EventType> <FirstName>sample string 1</FirstName> <LastName>sample string 2</LastName> <Location>sample string 9</Location> <OptInBrandEmail>true</OptInBrandEmail> <PhoneNumber>sample string 3</PhoneNumber> <PreferredContactMethod>sample string 11</PreferredContactMethod> <ZipCode>sample string 4</ZipCode> </UWEORsvp>