Home / API / ASP.NET Web API Details

POST api/v1/Account/PostCreateNoteOnAccount

Description

Create Private Note on specific account

Request Information

Parameters

NameDescriptionAdditional information
accountid
No documentation available.

Define this parameter in the request body.

createdby
No documentation available.

Define this parameter in the request body.

notetext
No documentation available.

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "accountid": 1,
  "createdby": "sample string 2",
  "notetext": "sample string 3"
}

application/xml, text/xml

Sample:
<createnoteonaccountmodel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/APICOMMON">
  <accountid>1</accountid>
  <createdby>sample string 2</createdby>
  <notetext>sample string 3</notetext>
</createnoteonaccountmodel>

application/x-www-form-urlencoded

Sample:

Sample not available.