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
NameDescriptionTypeAdditional 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": "fb016885-a28e-4f6e-9ace-97919b9e3dd6",
    "Description": "sample string 2"
  },
  {
    "ContactInfoTypeId": "fb016885-a28e-4f6e-9ace-97919b9e3dd6",
    "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>fb016885-a28e-4f6e-9ace-97919b9e3dd6</ContactInfoTypeId>
    <Description>sample string 2</Description>
  </ContactItemTypeViewModel>
  <ContactItemTypeViewModel>
    <ContactInfoTypeId>fb016885-a28e-4f6e-9ace-97919b9e3dd6</ContactInfoTypeId>
    <Description>sample string 2</Description>
  </ContactItemTypeViewModel>
</ArrayOfContactItemTypeViewModel>