GetAllTypes
Overview
Returns a list of ConViewModels that the API token has rights to view.
Request Information
Method
GET - api/ContactItem/GetAllTypes
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of ContactItemTypeViewModel
| Name | Description | Type | Additional information |
|---|---|---|---|
| ContactInfoTypeId |
Represents the PK of an existing Contact Information Type in BluSKY (static list) |
globally unique identifier |
None. |
| Description |
Represents the description of an existing Contact Information Type in BluSKY (static list) |
string |
None. |
Response Formats
JSON
[
{
"ContactInfoTypeId": "fe3daaa1-93dd-40f6-94f3-e07d4301f3a5",
"Description": "sample string 2"
},
{
"ContactInfoTypeId": "fe3daaa1-93dd-40f6-94f3-e07d4301f3a5",
"Description": "sample string 2"
}
]
XML
<ArrayOfContactItemTypeViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BluSKYWebAPI.Controllers">
<ContactItemTypeViewModel>
<ContactInfoTypeId>fe3daaa1-93dd-40f6-94f3-e07d4301f3a5</ContactInfoTypeId>
<Description>sample string 2</Description>
</ContactItemTypeViewModel>
<ContactItemTypeViewModel>
<ContactInfoTypeId>fe3daaa1-93dd-40f6-94f3-e07d4301f3a5</ContactInfoTypeId>
<Description>sample string 2</Description>
</ContactItemTypeViewModel>
</ArrayOfContactItemTypeViewModel>