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": "8bac0dd8-a851-4ae6-905e-f837df54fd88",
"ContactId": "be2c8fba-ccc0-464b-9bdd-50515e47c60a",
"AccountId": "fb62f185-1f3d-4eb9-8dab-b85ecff0eed7",
"AccountName": "sample string 4",
"WebAdmin": true,
"CanRegisterOthers": true,
"RoleName": "sample string 7"
},
{
"Id": "8bac0dd8-a851-4ae6-905e-f837df54fd88",
"ContactId": "be2c8fba-ccc0-464b-9bdd-50515e47c60a",
"AccountId": "fb62f185-1f3d-4eb9-8dab-b85ecff0eed7",
"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>fb62f185-1f3d-4eb9-8dab-b85ecff0eed7</AccountId>
<AccountName>sample string 4</AccountName>
<CanRegisterOthers>true</CanRegisterOthers>
<ContactId>be2c8fba-ccc0-464b-9bdd-50515e47c60a</ContactId>
<Id>8bac0dd8-a851-4ae6-905e-f837df54fd88</Id>
<RoleName>sample string 7</RoleName>
<WebAdmin>true</WebAdmin>
</ContactRole>
<ContactRole>
<AccountId>fb62f185-1f3d-4eb9-8dab-b85ecff0eed7</AccountId>
<AccountName>sample string 4</AccountName>
<CanRegisterOthers>true</CanRegisterOthers>
<ContactId>be2c8fba-ccc0-464b-9bdd-50515e47c60a</ContactId>
<Id>8bac0dd8-a851-4ae6-905e-f837df54fd88</Id>
<RoleName>sample string 7</RoleName>
<WebAdmin>true</WebAdmin>
</ContactRole>
</ArrayOfContactRole>