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 ContactRole| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| 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:
[
{
"Id": "0f1d9449-f181-43bf-99c7-42a385a5e7e6",
"ContactId": "9bc4ced9-c25b-4e84-89dd-5385785d95c5",
"AccountId": "da789030-4054-45f2-ae27-8628c818b227",
"AccountName": "sample string 4",
"WebAdmin": true,
"CanRegisterOthers": true,
"RoleName": "sample string 7"
},
{
"Id": "0f1d9449-f181-43bf-99c7-42a385a5e7e6",
"ContactId": "9bc4ced9-c25b-4e84-89dd-5385785d95c5",
"AccountId": "da789030-4054-45f2-ae27-8628c818b227",
"AccountName": "sample string 4",
"WebAdmin": true,
"CanRegisterOthers": true,
"RoleName": "sample string 7"
}
]
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>da789030-4054-45f2-ae27-8628c818b227</AccountId>
<AccountName>sample string 4</AccountName>
<CanRegisterOthers>true</CanRegisterOthers>
<ContactId>9bc4ced9-c25b-4e84-89dd-5385785d95c5</ContactId>
<Id>0f1d9449-f181-43bf-99c7-42a385a5e7e6</Id>
<RoleName>sample string 7</RoleName>
<WebAdmin>true</WebAdmin>
</ContactRole>
<ContactRole>
<AccountId>da789030-4054-45f2-ae27-8628c818b227</AccountId>
<AccountName>sample string 4</AccountName>
<CanRegisterOthers>true</CanRegisterOthers>
<ContactId>9bc4ced9-c25b-4e84-89dd-5385785d95c5</ContactId>
<Id>0f1d9449-f181-43bf-99c7-42a385a5e7e6</Id>
<RoleName>sample string 7</RoleName>
<WebAdmin>true</WebAdmin>
</ContactRole>
</ArrayOfContactRole>