DELETE api/Project_ManagerModel/DeleteProject_ManagerModel/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

Project_ManagerModel
NameDescriptionTypeAdditional information
ID

integer

None.

First_Name

string

None.

Last_Name

string

None.

IsDelete

boolean

None.

IsActive

boolean

None.

CreatedDate

date

None.

UpdatedDate

date

None.

UpdatedBy

integer

None.

CreatedBy

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "ID": 1,
  "First_Name": "sample string 2",
  "Last_Name": "sample string 3",
  "IsDelete": true,
  "IsActive": true,
  "CreatedDate": "2026-06-30T14:14:33.5112689+01:00",
  "UpdatedDate": "2026-06-30T14:14:33.5112689+01:00",
  "UpdatedBy": 1,
  "CreatedBy": 1
}

text/xml

Sample:
<Project_ManagerModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessEntities.Models">
  <CreatedBy>1</CreatedBy>
  <CreatedDate>2026-06-30T14:14:33.5112689+01:00</CreatedDate>
  <First_Name>sample string 2</First_Name>
  <ID>1</ID>
  <IsActive>true</IsActive>
  <IsDelete>true</IsDelete>
  <Last_Name>sample string 3</Last_Name>
  <UpdatedBy>1</UpdatedBy>
  <UpdatedDate>2026-06-30T14:14:33.5112689+01:00</UpdatedDate>
</Project_ManagerModel>