POST api/Downloads/UpsertDownloadData

Request Information

URI Parameters

None.

Body Parameters

DownloadModel
NameDescriptionTypeAdditional information
id

integer

None.

file_name

string

None.

file_url

string

None.

created_date

date

None.

Created_by

integer

None.

modify_date

date

None.

Modify_by

integer

None.

is_active

integer

None.

is_deleted

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "id": 1,
  "file_name": "sample string 2",
  "file_url": "sample string 3",
  "created_date": "2025-12-22T16:11:21.0494093+05:30",
  "Created_by": 5,
  "modify_date": "2025-12-22T16:11:21.0494093+05:30",
  "Modify_by": 7,
  "is_active": 8,
  "is_deleted": 9
}

application/xml, text/xml

Sample:
<DownloadModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NxModel">
  <Created_by>5</Created_by>
  <Modify_by>7</Modify_by>
  <created_date>2025-12-22T16:11:21.0494093+05:30</created_date>
  <file_name>sample string 2</file_name>
  <file_url>sample string 3</file_url>
  <id>1</id>
  <is_active>8</is_active>
  <is_deleted>9</is_deleted>
  <modify_date>2025-12-22T16:11:21.0494093+05:30</modify_date>
</DownloadModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Object

None.

Response Formats

application/json, text/json

Sample:
{}

application/xml, text/xml

Sample:
<z:anyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns:z="http://schemas.microsoft.com/2003/10/Serialization/" />