POST api/plugins/save

Request Information

URI Parameters

None.

Body Parameters

Plugin
NameDescriptionTypeAdditional information
Id

integer

None.

CompanyId

integer

None.

Name

string

None.

IsEnabled

boolean

None.

IsExpired

boolean

None.

Version

string

None.

EstimatedLoad

integer

None.

DateCreated

date

None.

DateModified

date

None.

Request Formats

application/json, text/json

Sample:
{
  "id": 1,
  "companyId": 2,
  "name": "sample string 3",
  "isEnabled": true,
  "isExpired": true,
  "version": "sample string 6",
  "estimatedLoad": 7,
  "dateCreated": "2026-01-17T07:05:04.7583692+02:00",
  "dateModified": "2026-01-17T07:05:04.7583692+02:00"
}

application/xml, text/xml

Sample:
<Plugin xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/USSDDomain.DAL.Objects">
  <__identity i:nil="true" xmlns="http://schemas.datacontract.org/2004/07/System" />
  <CompanyId>2</CompanyId>
  <DateCreated>2026-01-17T07:05:04.7583692+02:00</DateCreated>
  <DateModified>2026-01-17T07:05:04.7583692+02:00</DateModified>
  <EstimatedLoad>7</EstimatedLoad>
  <Id>1</Id>
  <IsEnabled>true</IsEnabled>
  <IsExpired>true</IsExpired>
  <Name>sample string 3</Name>
  <Version>sample string 6</Version>
</Plugin>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.