POST api/AdminData/PricingStructure

Request Information

URI Parameters

None.

Body Parameters

PricingStructureEditViewModel
NameDescriptionTypeAdditional information
PricingStructureID

integer

None.

PricingStructure

string

None.

IsActive

boolean

None.

IsQuote

boolean

None.

IsOrder

boolean

None.

IsInvoice

boolean

None.

IsPO

boolean

None.

GTCatalog

string

None.

Request Formats

application/json, text/json

Sample:
{
  "pricingStructureID": 1,
  "pricingStructure": "sample string 2",
  "isActive": true,
  "isQuote": true,
  "isOrder": true,
  "isInvoice": true,
  "isPO": true,
  "gtCatalog": "sample string 8"
}

application/xml, text/xml

Sample:
<PricingStructureEditViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GameTimeBAL.ViewModels">
  <GTCatalog>sample string 8</GTCatalog>
  <IsActive>true</IsActive>
  <IsInvoice>true</IsInvoice>
  <IsOrder>true</IsOrder>
  <IsPO>true</IsPO>
  <IsQuote>true</IsQuote>
  <PricingStructure>sample string 2</PricingStructure>
  <PricingStructureID>1</PricingStructureID>
</PricingStructureEditViewModel>

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.