GET api/Proposal/GetProposal?token={token}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| token | string |
Required |
Body Parameters
None.
Response Information
Resource Description
proposal_response| Name | Description | Type | Additional information |
|---|---|---|---|
| success | boolean |
None. |
|
| message | string |
None. |
|
| proposals | Collection of proposalDetails |
None. |
Response Formats
application/json, text/json
Sample:
{
"success": true,
"message": "sample string 2",
"proposals": [
{
"ProposalNumber": "sample string 1",
"ProposalUrl": "sample string 2",
"Status": "sample string 3",
"SendToCustomerDate": "2025-12-21T07:55:43.7647902+04:00"
},
{
"ProposalNumber": "sample string 1",
"ProposalUrl": "sample string 2",
"Status": "sample string 3",
"SendToCustomerDate": "2025-12-21T07:55:43.7647902+04:00"
}
]
}
application/xml, text/xml
Sample:
<proposal_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>
<proposals>
<proposalDetails>
<ProposalNumber>sample string 1</ProposalNumber>
<ProposalUrl>sample string 2</ProposalUrl>
<SendToCustomerDate>2025-12-21T07:55:43.7647902+04:00</SendToCustomerDate>
<Status>sample string 3</Status>
</proposalDetails>
<proposalDetails>
<ProposalNumber>sample string 1</ProposalNumber>
<ProposalUrl>sample string 2</ProposalUrl>
<SendToCustomerDate>2025-12-21T07:55:43.7647902+04:00</SendToCustomerDate>
<Status>sample string 3</Status>
</proposalDetails>
</proposals>
<success>true</success>
</proposal_response>