GET api/ContactRoles?portalId={portalId}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
portalId | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of ContactRoleName | Description | Type | Additional information |
---|---|---|---|
ContactId | globally unique identifier |
None. |
|
AccountId | globally unique identifier |
None. |
|
AccountName | string |
None. |
|
WebAdmin | boolean |
None. |
|
CanRegisterOthers | boolean |
None. |
|
RoleName | string |
None. |
Response Formats
application/json, text/json
Sample:
[ { "ContactId": "dbe33e77-9206-471a-8522-fbedb2f95ec1", "AccountId": "8211f1a2-d080-4013-b5e3-09a69dc5b444", "AccountName": "sample string 3", "WebAdmin": true, "CanRegisterOthers": true, "RoleName": "sample string 6" }, { "ContactId": "dbe33e77-9206-471a-8522-fbedb2f95ec1", "AccountId": "8211f1a2-d080-4013-b5e3-09a69dc5b444", "AccountName": "sample string 3", "WebAdmin": true, "CanRegisterOthers": true, "RoleName": "sample string 6" } ]
application/xml, text/xml
Sample:
<ArrayOfContactRole xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AltaiStandard.Core.Entities.CacheEntities"> <ContactRole> <AccountId>8211f1a2-d080-4013-b5e3-09a69dc5b444</AccountId> <AccountName>sample string 3</AccountName> <CanRegisterOthers>true</CanRegisterOthers> <ContactId>dbe33e77-9206-471a-8522-fbedb2f95ec1</ContactId> <RoleName>sample string 6</RoleName> <WebAdmin>true</WebAdmin> </ContactRole> <ContactRole> <AccountId>8211f1a2-d080-4013-b5e3-09a69dc5b444</AccountId> <AccountName>sample string 3</AccountName> <CanRegisterOthers>true</CanRegisterOthers> <ContactId>dbe33e77-9206-471a-8522-fbedb2f95ec1</ContactId> <RoleName>sample string 6</RoleName> <WebAdmin>true</WebAdmin> </ContactRole> </ArrayOfContactRole>