GET api/Project/GetAllTaskListIdMobile?userId={userId}&projectId={projectId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
userId

integer

Required

projectId

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of TaskListDTO
NameDescriptionTypeAdditional information
TaskListId

integer

None.

ProjectId

integer

None.

TaskListName

string

None.

Description

string

None.

CreatedOn

date

None.

CreatedBy

integer

None.

Priority

integer

None.

PendingItemCount

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "TaskListId": 1,
    "ProjectId": 2,
    "TaskListName": "sample string 3",
    "Description": "sample string 4",
    "CreatedOn": "2026-02-14T22:20:54.7200232+05:30",
    "CreatedBy": 1,
    "Priority": 5,
    "PendingItemCount": 6
  },
  {
    "TaskListId": 1,
    "ProjectId": 2,
    "TaskListName": "sample string 3",
    "Description": "sample string 4",
    "CreatedOn": "2026-02-14T22:20:54.7200232+05:30",
    "CreatedBy": 1,
    "Priority": 5,
    "PendingItemCount": 6
  }
]

application/xml, text/xml

Sample:
<ArrayOfTaskListDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SpmNew.Model.MobileDTO">
  <TaskListDTO>
    <CreatedBy>1</CreatedBy>
    <CreatedOn>2026-02-14T22:20:54.7200232+05:30</CreatedOn>
    <Description>sample string 4</Description>
    <PendingItemCount>6</PendingItemCount>
    <Priority>5</Priority>
    <ProjectId>2</ProjectId>
    <TaskListId>1</TaskListId>
    <TaskListName>sample string 3</TaskListName>
  </TaskListDTO>
  <TaskListDTO>
    <CreatedBy>1</CreatedBy>
    <CreatedOn>2026-02-14T22:20:54.7200232+05:30</CreatedOn>
    <Description>sample string 4</Description>
    <PendingItemCount>6</PendingItemCount>
    <Priority>5</Priority>
    <ProjectId>2</ProjectId>
    <TaskListId>1</TaskListId>
    <TaskListName>sample string 3</TaskListName>
  </TaskListDTO>
</ArrayOfTaskListDTO>