Home / API / ASP.NET Web API Details

POST api/v1/ContactLog/PostCreateContactLogType

Description

Create a new record of contact log type

Request Information

Parameters

NameDescriptionAdditional information
contactlogtypeid
No documentation available.

Define this parameter in the request body.

companyid
No documentation available.

Define this parameter in the request body.

isactive
No documentation available.

Define this parameter in the request body.

contactlogtypename
No documentation available.

Define this parameter in the request body.

type
No documentation available.

Define this parameter in the request body.

Request 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>

application/x-www-form-urlencoded

Sample:

Sample not available.