GET api/CRM/GetInteractionTypes

Get list of Interaction Types

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of InteractionType
NameDescriptionTypeAdditional information
InteractionTypeID

integer

None.

Description

string

None.

DefaultStatusID

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "InteractionTypeID": 1,
    "Description": "sample string 2",
    "DefaultStatusID": 1
  },
  {
    "InteractionTypeID": 1,
    "Description": "sample string 2",
    "DefaultStatusID": 1
  }
]

application/xml, text/xml

Sample:
<ArrayOfInteractionType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DC.Core.Model">
  <InteractionType>
    <DefaultStatusID>1</DefaultStatusID>
    <Description>sample string 2</Description>
    <InteractionTypeID>1</InteractionTypeID>
  </InteractionType>
  <InteractionType>
    <DefaultStatusID>1</DefaultStatusID>
    <Description>sample string 2</Description>
    <InteractionTypeID>1</InteractionTypeID>
  </InteractionType>
</ArrayOfInteractionType>