POST 3dCartWebAPI/v1/CRM/savedreply


Adds a new CRM SaveReply to the system

Request Information

URI Parameters

None.

Body Parameters

A Json or XML object containing the new CRM SavedReply

CrmSavedReply
NameDescriptionTypeAdditional information
Id

Primary key. Auto-incremented. database reference = crm_saved_replies.id

integer

None.

Title

database reference = crm_saved_replies.title

string

String length: inclusive between 0 and 100

Message

database reference = crm_saved_replies.message

string

String length: inclusive between 0 and 65535

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "Title": "sample string 1",
  "Message": "sample string 2"
}

application/xml, text/xml

Sample:
<CrmSavedReply xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <Id>1</Id>
  <Title>sample string 1</Title>
  <Message>sample string 2</Message>
</CrmSavedReply>

Sample Request



Response Information

application/json, text/json

Sample:
[
  {
    "Key":"SavedReplyID",
    "Value":"1234",
    "Status":"201",
    "Message":"Created successfully",
  }
]
							

Resource Description

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.