GET api/v1/ContactItems
Returns a list of ContactItemTypeViewModels that the API token has rights to view
Request Information
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
application/json, text/json
Sample:
[
{
"ContactInfoTypeId": "1aa3c84a-8908-49af-ad0f-84e853457221",
"Description": "sample string 2"
},
{
"ContactInfoTypeId": "1aa3c84a-8908-49af-ad0f-84e853457221",
"Description": "sample string 2"
}
]
application/xml, text/xml
Sample:
<ArrayOfContactItemTypeViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/APIWebRole.Controllers">
<ContactItemTypeViewModel>
<ContactInfoTypeId>1aa3c84a-8908-49af-ad0f-84e853457221</ContactInfoTypeId>
<Description>sample string 2</Description>
</ContactItemTypeViewModel>
<ContactItemTypeViewModel>
<ContactInfoTypeId>1aa3c84a-8908-49af-ad0f-84e853457221</ContactInfoTypeId>
<Description>sample string 2</Description>
</ContactItemTypeViewModel>
</ArrayOfContactItemTypeViewModel>