GET api/Migration/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

tasklist
NameDescriptionTypeAdditional information
taskid

integer

None.

yellowcount

integer

None.

redcount

integer

None.

notes

string

None.

attchement

string

None.

archive

boolean

None.

action

integer

None.

actiondate

date

None.

assignment

string

None.

todayRemainder

boolean

None.

isnotified

boolean

None.

greenTimer

date

None.

isactive

boolean

None.

modifiedon

date

None.

emaildate

date

None.

email

string

None.

Response Formats

application/json, text/json

Sample:
{
  "taskid": 1,
  "yellowcount": 2,
  "redcount": 1,
  "notes": "sample string 3",
  "attchement": "sample string 4",
  "archive": true,
  "action": 6,
  "actiondate": "2025-12-16T16:16:10.5705795+05:30",
  "assignment": "sample string 8",
  "todayRemainder": true,
  "isnotified": true,
  "greenTimer": "2025-12-16T16:16:10.5705795+05:30",
  "isactive": true,
  "modifiedon": "2025-12-16T16:16:10.5705795+05:30",
  "emaildate": "2025-12-16T16:16:10.5705795+05:30",
  "email": "sample string 13"
}

application/xml, text/xml

Sample:
<tasklist xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/api.ayanest.net.DataAccess">
  <action>6</action>
  <actiondate>2025-12-16T16:16:10.5705795+05:30</actiondate>
  <archive>true</archive>
  <assignment>sample string 8</assignment>
  <attchement>sample string 4</attchement>
  <email>sample string 13</email>
  <emaildate>2025-12-16T16:16:10.5705795+05:30</emaildate>
  <greenTimer>2025-12-16T16:16:10.5705795+05:30</greenTimer>
  <isactive>true</isactive>
  <isnotified>true</isnotified>
  <modifiedon>2025-12-16T16:16:10.5705795+05:30</modifiedon>
  <notes>sample string 3</notes>
  <redcount>1</redcount>
  <taskid>1</taskid>
  <todayRemainder>true</todayRemainder>
  <yellowcount>2</yellowcount>
</tasklist>