PUT api/Paper/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

Paper_Volume
NameDescriptionTypeAdditional information
VolumeID

integer

None.

VolumeName

string

Required

VolumePhoto

string

None.

VolumeDesc

string

None.

CreatedDT

date

None.

CreatedBy

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "VolumeID": 1,
  "VolumeName": "sample string 2",
  "VolumePhoto": "sample string 3",
  "VolumeDesc": "sample string 4",
  "CreatedDT": "2025-12-23T18:22:16.6442195+05:30",
  "CreatedBy": 6
}

application/xml, text/xml

Sample:
<Paper_Volume xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PaperAPI.Models">
  <CreatedBy>6</CreatedBy>
  <CreatedDT>2025-12-23T18:22:16.6442195+05:30</CreatedDT>
  <VolumeDesc>sample string 4</VolumeDesc>
  <VolumeID>1</VolumeID>
  <VolumeName>sample string 2</VolumeName>
  <VolumePhoto>sample string 3</VolumePhoto>
</Paper_Volume>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

None.