GET 17.0/app/sendoffers/{id}

Description

No description available.

URI Parameters

Name Description Type Additional information
id

integer

Required

None.

None.

Collection of SendOffer
Name Description Type Additional information
ContactId

integer

None.

Contact

string

None.

Type

string

None.

Email

string

None.

Mobile

string

None.

SendEmail

boolean

None.

SendSms

boolean

None.

OfferContactType

integer

None.

application/json, text/json

Sample:
[
  {
    "contactId": 1,
    "contact": "sample string 2",
    "type": "sample string 3",
    "email": "sample string 4",
    "mobile": "sample string 5",
    "sendEmail": true,
    "sendSms": true,
    "offerContactType": 8
  },
  {
    "contactId": 1,
    "contact": "sample string 2",
    "type": "sample string 3",
    "email": "sample string 4",
    "mobile": "sample string 5",
    "sendEmail": true,
    "sendSms": true,
    "offerContactType": 8
  }
]

application/xml, text/xml

Sample:
<ArrayOfSendOffer xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <SendOffer>
    <ContactId>1</ContactId>
    <Contact>sample string 2</Contact>
    <Type>sample string 3</Type>
    <Email>sample string 4</Email>
    <Mobile>sample string 5</Mobile>
    <SendEmail>true</SendEmail>
    <SendSms>true</SendSms>
    <OfferContactType>8</OfferContactType>
  </SendOffer>
  <SendOffer>
    <ContactId>1</ContactId>
    <Contact>sample string 2</Contact>
    <Type>sample string 3</Type>
    <Email>sample string 4</Email>
    <Mobile>sample string 5</Mobile>
    <SendEmail>true</SendEmail>
    <SendSms>true</SendSms>
    <OfferContactType>8</OfferContactType>
  </SendOffer>
</ArrayOfSendOffer>