GET account/userDashboard

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

userDashboardModel
Name Description Type Additional information
jobPostingCount

integer (Int32)

None.

employeeCount

integer (Int32)

None.

employerCount

integer (Int32)

None.

confirmJobPostings

Collection of userDashboardConfirmJobPostingModel

None.

Response Formats

application/json, text/json

Sample:
{
  "jobPostingCount": 1,
  "employeeCount": 2,
  "employerCount": 3,
  "confirmJobPostings": [
    {
      "id": 1,
      "jobPostingStatuName": "sample string 2",
      "title": "sample string 3",
      "firmName": "sample string 4",
      "createdDate": "05.05.2024 07:05"
    },
    {
      "id": 1,
      "jobPostingStatuName": "sample string 2",
      "title": "sample string 3",
      "firmName": "sample string 4",
      "createdDate": "05.05.2024 07:05"
    }
  ]
}

application/xml, text/xml

Sample:
<userDashboardModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/api.Models">
  <confirmJobPostings>
    <userDashboardConfirmJobPostingModel>
      <createdDate_>2024-05-05T07:05:38.6152128+03:00</createdDate_>
      <firmName>sample string 4</firmName>
      <id>1</id>
      <jobPostingStatuName>sample string 2</jobPostingStatuName>
      <title>sample string 3</title>
    </userDashboardConfirmJobPostingModel>
    <userDashboardConfirmJobPostingModel>
      <createdDate_>2024-05-05T07:05:38.6152128+03:00</createdDate_>
      <firmName>sample string 4</firmName>
      <id>1</id>
      <jobPostingStatuName>sample string 2</jobPostingStatuName>
      <title>sample string 3</title>
    </userDashboardConfirmJobPostingModel>
  </confirmJobPostings>
  <employeeCount>2</employeeCount>
  <employerCount>3</employerCount>
  <jobPostingCount>1</jobPostingCount>
</userDashboardModel>

multipart/form-data

Sample:
<userDashboardModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/api.Models"><confirmJobPostings><userDashboardConfirmJobPostingModel><createdDate_>2024-05-05T07:05:38.6152128+03:00</createdDate_><firmName>sample string 4</firmName><id>1</id><jobPostingStatuName>sample string 2</jobPostingStatuName><title>sample string 3</title></userDashboardConfirmJobPostingModel><userDashboardConfirmJobPostingModel><createdDate_>2024-05-05T07:05:38.6152128+03:00</createdDate_><firmName>sample string 4</firmName><id>1</id><jobPostingStatuName>sample string 2</jobPostingStatuName><title>sample string 3</title></userDashboardConfirmJobPostingModel></confirmJobPostings><employeeCount>2</employeeCount><employerCount>3</employerCount><jobPostingCount>1</jobPostingCount></userDashboardModel>