POST api/Proposal/SaveProposalSummary

Request Information

URI Parameters

None.

Body Parameters

proposal_summary_request
NameDescriptionTypeAdditional information
customer_Id

string

None.

reference_number

string

None.

customer_name

string

None.

contacting_person_name

string

None.

customer_email

string

None.

customer_phone

string

None.

customer_address

string

None.

title

string

None.

proposal_link

string

None.

status

integer

None.

department

integer

None.

hardware_value

decimal number

None.

retail_tech_value

decimal number

None.

biz_support_value

decimal number

None.

insurance_value

decimal number

None.

amount

decimal number

None.

payouts

decimal number

None.

remarks

string

None.

accepted_on

date

None.

accepted_mail_on

date

None.

created_from

integer

None.

created_for

integer

None.

created_on

date

None.

created_by

integer

None.

modified_on

date

None.

modified_by

integer

None.

token

string

None.

associate_id

integer

None.

referral_partner_code

string

None.

Request Formats

application/json, text/json

Sample:
{
  "customer_Id": "sample string 1",
  "reference_number": "sample string 2",
  "customer_name": "sample string 3",
  "contacting_person_name": "sample string 4",
  "customer_email": "sample string 5",
  "customer_phone": "sample string 6",
  "customer_address": "sample string 7",
  "title": "sample string 8",
  "proposal_link": "sample string 9",
  "status": 10,
  "department": 11,
  "hardware_value": 12.0,
  "retail_tech_value": 13.0,
  "biz_support_value": 14.0,
  "insurance_value": 15.0,
  "amount": 16.0,
  "payouts": 17.0,
  "remarks": "sample string 18",
  "accepted_on": "2025-12-21T07:55:02.6789858+04:00",
  "accepted_mail_on": "2025-12-21T07:55:02.6789858+04:00",
  "created_from": 19,
  "created_for": 20,
  "created_on": "2025-12-21T07:55:02.6789858+04:00",
  "created_by": 22,
  "modified_on": "2025-12-21T07:55:02.6789858+04:00",
  "modified_by": 24,
  "token": "sample string 25",
  "associate_id": 26,
  "referral_partner_code": "sample string 27"
}

application/xml, text/xml

Sample:
<proposal_summary_request xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PromptTech.CRM.CustomerApp.Models">
  <accepted_mail_on>2025-12-21T07:55:02.6789858+04:00</accepted_mail_on>
  <accepted_on>2025-12-21T07:55:02.6789858+04:00</accepted_on>
  <amount>16</amount>
  <associate_id>26</associate_id>
  <biz_support_value>14</biz_support_value>
  <contacting_person_name>sample string 4</contacting_person_name>
  <created_by>22</created_by>
  <created_for>20</created_for>
  <created_from>19</created_from>
  <created_on>2025-12-21T07:55:02.6789858+04:00</created_on>
  <customer_Id>sample string 1</customer_Id>
  <customer_address>sample string 7</customer_address>
  <customer_email>sample string 5</customer_email>
  <customer_name>sample string 3</customer_name>
  <customer_phone>sample string 6</customer_phone>
  <department>11</department>
  <hardware_value>12</hardware_value>
  <insurance_value>15</insurance_value>
  <modified_by>24</modified_by>
  <modified_on>2025-12-21T07:55:02.6789858+04:00</modified_on>
  <payouts>17</payouts>
  <proposal_link>sample string 9</proposal_link>
  <reference_number>sample string 2</reference_number>
  <referral_partner_code>sample string 27</referral_partner_code>
  <remarks>sample string 18</remarks>
  <retail_tech_value>13</retail_tech_value>
  <status>10</status>
  <title>sample string 8</title>
  <token>sample string 25</token>
</proposal_summary_request>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

proposal_summary_response
NameDescriptionTypeAdditional information
success

boolean

None.

message

string

None.

proposal_Id

string

None.

Response Formats

application/json, text/json

Sample:
{
  "success": true,
  "message": "sample string 2",
  "proposal_Id": "sample string 3"
}

application/xml, text/xml

Sample:
<proposal_summary_response xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PromptTech.CRM.CustomerApp.Models">
  <message>sample string 2</message>
  <proposal_Id>sample string 3</proposal_Id>
  <success>true</success>
</proposal_summary_response>