GET 3dCartWebAPI/v1/CRM/savedreply


Get all CRMs

Request Information

URI Parameters

NameDescriptionTypeAdditional information
title

Title

string

Default value is

limit

Maximum number of items that can be returned

integer

Default value is 10

offset

Starting point for the return data

integer

Default value is 1

countonly

Count the number of rows only

integer

Default value is 0

Body Parameters

None.


Sample Request



Response Information

Resource Description

Collection of 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

Response Formats

application/json, text/json

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

application/xml, text/xml

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