GET Api/ActionPlanDAdminAPI/GetAllActionPlanDAdminByReportId?reportId={reportId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
reportId

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of ActionPlanDAdminDTO
NameDescriptionTypeAdditional information
Id

integer

None.

ActionPlanId

integer

Required

Matching regular expression pattern: ^[0-9]*$

UserId

integer

Required

Matching regular expression pattern: ^[0-9]*$

CreatedBy

integer

Matching regular expression pattern: ^[0-9]*$

CreatedOn

date

Required

Data type: DateTime

UpdatedBy

integer

Matching regular expression pattern: ^[0-9]*$

UpdatedOn

date

Data type: DateTime

IsActive

boolean

Range: inclusive between false and true

IsDeleted

boolean

Range: inclusive between false and true

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "ActionPlanId": 2,
    "UserId": 3,
    "CreatedBy": 4,
    "CreatedOn": "2025-05-25T19:32:55.5566305+04:00",
    "UpdatedBy": 1,
    "UpdatedOn": "2025-05-25T19:32:55.5566305+04:00",
    "IsActive": true,
    "IsDeleted": true
  },
  {
    "Id": 1,
    "ActionPlanId": 2,
    "UserId": 3,
    "CreatedBy": 4,
    "CreatedOn": "2025-05-25T19:32:55.5566305+04:00",
    "UpdatedBy": 1,
    "UpdatedOn": "2025-05-25T19:32:55.5566305+04:00",
    "IsActive": true,
    "IsDeleted": true
  }
]

text/html, multipart/form-data

Sample:
[{"Id":1,"ActionPlanId":2,"UserId":3,"CreatedBy":4,"CreatedOn":"2025-05-25T19:32:55.5566305+04:00","UpdatedBy":1,"UpdatedOn":"2025-05-25T19:32:55.5566305+04:00","IsActive":true,"IsDeleted":true},{"Id":1,"ActionPlanId":2,"UserId":3,"CreatedBy":4,"CreatedOn":"2025-05-25T19:32:55.5566305+04:00","UpdatedBy":1,"UpdatedOn":"2025-05-25T19:32:55.5566305+04:00","IsActive":true,"IsDeleted":true}]

application/xml, text/xml

Sample:
<ArrayOfActionPlanDAdminDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MSMChecklistFlow.DTO">
  <ActionPlanDAdminDTO>
    <ActionPlanId>2</ActionPlanId>
    <CreatedBy>4</CreatedBy>
    <CreatedOn>2025-05-25T19:32:55.5566305+04:00</CreatedOn>
    <Id>1</Id>
    <IsActive>true</IsActive>
    <IsDeleted>true</IsDeleted>
    <UpdatedBy>1</UpdatedBy>
    <UpdatedOn>2025-05-25T19:32:55.5566305+04:00</UpdatedOn>
    <UserId>3</UserId>
  </ActionPlanDAdminDTO>
  <ActionPlanDAdminDTO>
    <ActionPlanId>2</ActionPlanId>
    <CreatedBy>4</CreatedBy>
    <CreatedOn>2025-05-25T19:32:55.5566305+04:00</CreatedOn>
    <Id>1</Id>
    <IsActive>true</IsActive>
    <IsDeleted>true</IsDeleted>
    <UpdatedBy>1</UpdatedBy>
    <UpdatedOn>2025-05-25T19:32:55.5566305+04:00</UpdatedOn>
    <UserId>3</UserId>
  </ActionPlanDAdminDTO>
</ArrayOfActionPlanDAdminDTO>