POST api/user/updateConnectsPackage

Request Information

URI Parameters

None.

Body Parameters

ConnectsPackage
NameDescriptionTypeAdditional information
connectsPackagesId

integer

None.

name

string

None.

price

integer

None.

numberOfConnects

integer

None.

createdDate

date

None.

updatedDate

date

None.

status

string

None.

picture

string

None.

Request Formats

application/json, text/json

Sample:
{
  "connectsPackagesId": 1,
  "name": "sample string 2",
  "price": 1,
  "numberOfConnects": 1,
  "createdDate": "2025-04-11T05:33:49.8681883+00:00",
  "updatedDate": "2025-04-11T05:33:49.8681883+00:00",
  "status": "sample string 3",
  "picture": "sample string 4"
}

application/xml, text/xml

Sample:
<ConnectsPackage xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/asanRishta.Models">
  <connectsPackagesId>1</connectsPackagesId>
  <createdDate>2025-04-11T05:33:49.8681883+00:00</createdDate>
  <name>sample string 2</name>
  <numberOfConnects>1</numberOfConnects>
  <picture>sample string 4</picture>
  <price>1</price>
  <status>sample string 3</status>
  <updatedDate>2025-04-11T05:33:49.8681883+00:00</updatedDate>
</ConnectsPackage>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

string

Response Formats

application/json, text/json

Sample:
"sample string 1"

application/xml, text/xml

Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>