GET api/applicant/Application/GetUserDashboardDetails?userId={userId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
userId

string

Required

Body Parameters

None.

Response Information

Resource Description

ApiResponseOfUserDashboardDetailsDTO
NameDescriptionTypeAdditional information
Success

boolean

None.

Message

string

None.

Data

UserDashboardDetailsDTO

None.

Response Formats

application/json, text/json

Sample:
{
  "Success": true,
  "Message": "sample string 2",
  "Data": {
    "TotalApplications": 1,
    "IncompleteCount": 2,
    "ReturnedCount": 3,
    "CompletedCount": 4,
    "InProgressCount": 5,
    "RejectedCount": 6
  }
}

application/xml, text/xml

Sample:
<ApiResponseOfUserDashboardDetailsDTOj_Pf0XX_P4 xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tourism.Entities.Models">
  <Data xmlns:d2p1="http://schemas.datacontract.org/2004/07/Tourism.Entities.CustomApplicationModels">
    <d2p1:CompletedCount>4</d2p1:CompletedCount>
    <d2p1:InProgressCount>5</d2p1:InProgressCount>
    <d2p1:IncompleteCount>2</d2p1:IncompleteCount>
    <d2p1:RejectedCount>6</d2p1:RejectedCount>
    <d2p1:ReturnedCount>3</d2p1:ReturnedCount>
    <d2p1:TotalApplications>1</d2p1:TotalApplications>
  </Data>
  <Message>sample string 2</Message>
  <Success>true</Success>
</ApiResponseOfUserDashboardDetailsDTOj_Pf0XX_P4>