POST Api/Crm/Note/CreateEdit

Request Information

URI Parameters

None.

Body Parameters

CrmNoteCreateEditView
NameDescriptionTypeAdditional information
Id

integer

None.

IsCreate

boolean

None.

RelatedTypeCode

string

None.

RelatedId

integer

None.

Text

string

Min length: 10

FileCollectionId

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "IsCreate": true,
  "RelatedTypeCode": "sample string 3",
  "RelatedId": 4,
  "Text": "sample string 5",
  "FileCollectionId": 1
}

application/xml, text/xml

Sample:
<CrmNoteCreateEditView xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/KAdmin.Model.Models.CrmNoteView">
  <FileCollectionId>1</FileCollectionId>
  <Id>1</Id>
  <IsCreate>true</IsCreate>
  <RelatedId>4</RelatedId>
  <RelatedTypeCode>sample string 3</RelatedTypeCode>
  <Text>sample string 5</Text>
</CrmNoteCreateEditView>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.