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": "ed932afa-cba6-478d-aca5-9087c32cdc67",
"ContactId": "0125d5ff-fbc1-4561-81d3-5b9d69609cd8",
"AccountId": "03d27a73-944f-417e-a99c-aa68b288b891",
"AccountName": "sample string 4",
"WebAdmin": true,
"CanRegisterOthers": true,
"RoleName": "sample string 7"
},
{
"Id": "ed932afa-cba6-478d-aca5-9087c32cdc67",
"ContactId": "0125d5ff-fbc1-4561-81d3-5b9d69609cd8",
"AccountId": "03d27a73-944f-417e-a99c-aa68b288b891",
"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>03d27a73-944f-417e-a99c-aa68b288b891</AccountId>
<AccountName>sample string 4</AccountName>
<CanRegisterOthers>true</CanRegisterOthers>
<ContactId>0125d5ff-fbc1-4561-81d3-5b9d69609cd8</ContactId>
<Id>ed932afa-cba6-478d-aca5-9087c32cdc67</Id>
<RoleName>sample string 7</RoleName>
<WebAdmin>true</WebAdmin>
</ContactRole>
<ContactRole>
<AccountId>03d27a73-944f-417e-a99c-aa68b288b891</AccountId>
<AccountName>sample string 4</AccountName>
<CanRegisterOthers>true</CanRegisterOthers>
<ContactId>0125d5ff-fbc1-4561-81d3-5b9d69609cd8</ContactId>
<Id>ed932afa-cba6-478d-aca5-9087c32cdc67</Id>
<RoleName>sample string 7</RoleName>
<WebAdmin>true</WebAdmin>
</ContactRole>
</ArrayOfContactRole>