| All Verbs | /v2/partner/proposals/audit |
|---|
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| SearchText | query | string | No | |
| PageSize | query | int | No | |
| PageNr | query | int | No | |
| ProposalGuid | query | string | No |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| Result | form | List<ViewProposalsAudit> | No | |
| TotalRecords | form | int | No | |
| TotalPages | form | int | No | |
| CurrentPage | form | int | No | |
| CurrentPageNr | form | int | No |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| ProposalGuid | form | string | No | |
| ProposalId | form | int | No | |
| ProposalName | form | string | No | |
| ProposalDescription | form | string | No | |
| PartnerId | form | int | No | |
| ClientId | form | int | No | |
| ClientFullName | form | string | No | |
| Event | form | string | No | |
| UserName | form | string | No | |
| IpAddress | form | string | No | |
| CreatedAsAt | form | DateTime | No | |
| ProposalJson | form | string | No |
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /v2/partner/proposals/audit HTTP/1.1
Host: api.portfoliolink.co.za
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
searchText: String,
pageSize: 0,
pageNr: 0,
proposalGuid: String
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length
{
result:
[
{
proposalGuid: String,
proposalId: 0,
proposalName: String,
proposalDescription: String,
partnerId: 0,
clientId: 0,
clientFullName: String,
event: String,
userName: String,
ipAddress: String,
createdAsAt: 0001-01-01,
proposalJson: String
}
],
totalRecords: 0,
totalPages: 0,
currentPage: 0,
currentPageNr: 0
}