POST crm/shipto/note

By Ship To Code, POST New Customer Ship To Note

Request Information

URI Parameters

None.

Body Parameters

Interprise.Web.Services.Models.CRMNoteInput
NameDescriptionTypeAdditional information
EntityCode

Customer Code or Ship To Code

string

None.

ContactFullName

Contact full name

string

None.

ContactCode

Assign contact code to the notes, Use contact code if you know it else use EntityCode and ContactFullName when unique

string

None.

Title

string

None.

Notes

string

None.

CustomFields

Collection of all the custom fields in CRMNote table

Collection of Interprise.Web.Services.Models.CustomField

None.

Request Formats

{
  "entityCode": "sample string 1",
  "contactFullName": "sample string 2",
  "contactCode": "sample string 3",
  "title": "sample string 4",
  "notes": "sample string 5",
  "customFields": [
    {
      "field": "sample string 1",
      "value": {}
    },
    {
      "field": "sample string 1",
      "value": {}
    }
  ]
}
<CRMNoteInput xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <EntityCode>sample string 1</EntityCode>
  <ContactFullName>sample string 2</ContactFullName>
  <ContactCode>sample string 3</ContactCode>
  <Title>sample string 4</Title>
  <Notes>sample string 5</Notes>
  <CustomFields>
    <CustomField>
      <Field>sample string 1</Field>
      <Value />
    </CustomField>
    <CustomField>
      <Field>sample string 1</Field>
      <Value />
    </CustomField>
  </CustomFields>
</CRMNoteInput>

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'System.Web.Http.ModelBinding.JQueryMvcFormUrlEncodedFormatter' to write type 'CRMNoteInput'.

Response Information

Resource Description

Interprise.Web.Services.Http.MetadataOfInterprise.Web.Services.Models.CRMNoteInput
NameDescriptionTypeAdditional information
data

Interprise.Web.Services.Http.DataNodeOfInterprise.Web.Services.Models.CRMNoteInput

None.

links

Interprise.Web.Services.Http.LinksNode

None.

Response Formats

Sample not available.