GET api/userauthentication/list/all?namefilter={namefilter}&domain={domain}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| namefilter | string |
Required |
|
| domain | string |
Required |
Body Parameters
None.
Response Information
Resource Description
EventPerson| Name | Description | Type | Additional information |
|---|---|---|---|
| Id |
User Id |
integer |
None. |
| EmailAddress |
EmailAddress |
string |
None. |
| Name |
Name |
string |
None. |
| IsRequired |
IsRequired |
boolean |
None. |
| UserType |
UserType |
string |
None. |
| IsPR |
IsPR |
boolean |
None. |
| Entity |
Entity |
string |
None. |
| Acknowledgment |
Acknowledgment |
boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": 1,
"EmailAddress": "sample string 2",
"Name": "sample string 3",
"IsRequired": true,
"UserType": "sample string 5",
"IsPR": true,
"Entity": "sample string 7",
"Acknowledgment": true
}
application/xml, text/xml
Sample:
<CalendarModel.EventPerson xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GabineteDigital.Services.Models"> <Acknowledgment>true</Acknowledgment> <EmailAddress>sample string 2</EmailAddress> <Entity>sample string 7</Entity> <Id>1</Id> <IsPR>true</IsPR> <IsRequired>true</IsRequired> <Name>sample string 3</Name> <UserType>sample string 5</UserType> </CalendarModel.EventPerson>