DELETE api/packages/documentsPackage/{packageId}

Delete a documents package.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
packageId

Document package ID to delete.

integer

Required

Body Parameters

None.

Response Information

Resource Description

DocumentsPackage
NameDescriptionTypeAdditional information
DocumentsPackageId

integer

None.

PackageName

string

None.

LowerLimit

integer

None.

UpperLimit

integer

None.

Status

PackageStatus

None.

Response Formats

application/json, text/json

Sample:
{
  "DocumentsPackageId": 1,
  "PackageName": "sample string 2",
  "LowerLimit": 3,
  "UpperLimit": 4,
  "Status": 0
}

text/html

Sample:
{"DocumentsPackageId":1,"PackageName":"sample string 2","LowerLimit":3,"UpperLimit":4,"Status":0}

application/xml, text/xml

Sample:
<DocumentsPackage xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Common.POCO">
  <DocumentsPackageId>1</DocumentsPackageId>
  <LowerLimit>3</LowerLimit>
  <PackageName>sample string 2</PackageName>
  <Status>Active</Status>
  <UpperLimit>4</UpperLimit>
</DocumentsPackage>