POST api/Account/Upsertfeedback

Request Information

URI Parameters

None.

Body Parameters

UpsertFeedback_DTO
NameDescriptionTypeAdditional information
id

integer

None.

email

string

None.

name

string

None.

description

string

None.

stud_id

integer

None.

created_date

date

None.

query_for

integer

None.

created_by

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "id": 1,
  "email": "sample string 2",
  "name": "sample string 3",
  "description": "sample string 4",
  "stud_id": 5,
  "created_date": "2025-12-22T16:14:57.4532687+05:30",
  "query_for": 7,
  "created_by": 8
}

application/xml, text/xml

Sample:
<UpsertFeedback_DTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NxModel">
  <created_by>8</created_by>
  <created_date>2025-12-22T16:14:57.4532687+05:30</created_date>
  <description>sample string 4</description>
  <email>sample string 2</email>
  <id>1</id>
  <name>sample string 3</name>
  <query_for>7</query_for>
  <stud_id>5</stud_id>
</UpsertFeedback_DTO>

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/" />