Home / API / ASP.NET Web API Details

GET api/v1/ContactLog/GetContactLogType?TypeId={TypeId}

Description

Get contact log type by Id

Request Information

Parameters

NameDescriptionAdditional information
TypeId

Define this parameter in the request URI.

Response Information

tcontactlogtype

Response body formats

application/json, text/json

Sample:
{
  "contactlogtypeid": 1,
  "companyid": 2,
  "isactive": true,
  "contactlogtypename": "sample string 4",
  "type": 5
}

application/xml, text/xml

Sample:
<tcontactlogtype xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/APIDATAv1">
  <companyid>2</companyid>
  <contactlogtypeid>1</contactlogtypeid>
  <contactlogtypename>sample string 4</contactlogtypename>
  <isactive>true</isactive>
  <type>5</type>
</tcontactlogtype>