POST api/DSR/GetUserRequestList

Get UserRequests List

Request Information

Parameters

NameDescriptionAdditional information
requset
No documentation available.

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "filter": {
    "searchRequestType": 1,
    "searchRequestStatus": 2,
    "requestedBy": "sample string 3",
    "transactionNo": "sample string 4",
    "requestedFrom": "2025-06-15T22:05:15.8518993+05:30",
    "requestedTo": "2025-06-15T22:05:15.8518993+05:30",
    "inventoryType": 1,
    "clientTypeId": 1,
    "clientId": 1
  },
  "paging": {
    "PageIndex": 1,
    "PageSize": 2,
    "Sort": {
      "SortBy": "sample string 1",
      "SortDirection": 0
    }
  },
  "userID": 1,
  "roleID": 2,
  "ownerID": 3
}

application/xml, text/xml

Sample:
<UserRequestDataModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/crmData.Models">
  <filter>
    <clientId>1</clientId>
    <clientTypeId>1</clientTypeId>
    <inventoryType>1</inventoryType>
    <requestedBy>sample string 3</requestedBy>
    <requestedFrom>2025-06-15T22:05:15.8518993+05:30</requestedFrom>
    <requestedTo>2025-06-15T22:05:15.8518993+05:30</requestedTo>
    <searchRequestStatus>2</searchRequestStatus>
    <searchRequestType>1</searchRequestType>
    <transactionNo>sample string 4</transactionNo>
  </filter>
  <ownerID>3</ownerID>
  <paging>
    <PageIndex>1</PageIndex>
    <PageSize>2</PageSize>
    <Sort>
      <SortBy>sample string 1</SortBy>
      <SortDirection>Asc</SortDirection>
    </Sort>
  </paging>
  <roleID>2</roleID>
  <userID>1</userID>
</UserRequestDataModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Response body formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.