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 ContactItemTypeViewModelName | 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": "403b1969-25cc-401c-991e-8365c7f7dcdc", "Description": "sample string 2" }, { "ContactInfoTypeId": "403b1969-25cc-401c-991e-8365c7f7dcdc", "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>403b1969-25cc-401c-991e-8365c7f7dcdc</ContactInfoTypeId> <Description>sample string 2</Description> </ContactItemTypeViewModel> <ContactItemTypeViewModel> <ContactInfoTypeId>403b1969-25cc-401c-991e-8365c7f7dcdc</ContactInfoTypeId> <Description>sample string 2</Description> </ContactItemTypeViewModel> </ArrayOfContactItemTypeViewModel>