PUT api/providers/{pid}/locations/{locationId}/services/serviceConfig/{serviceConfigId}/prices

Request Information

URI Parameters

NameDescriptionTypeAdditional information
pid

integer

Required

locationId

integer

Required

serviceConfigId

integer

Required

Body Parameters

Collection of UpdateServicesPriceCommand
NameDescriptionTypeAdditional information
Id

integer

None.

Name

string

None.

Price

decimal number

None.

Request Formats

application/json, text/json

Sample:
[
  {
    "id": 1,
    "name": "sample string 2",
    "price": 1.1
  },
  {
    "id": 1,
    "name": "sample string 2",
    "price": 1.1
  }
]

application/xml, text/xml

Sample:
<ArrayOfUpdateServicesPriceCommand xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Filazero.Core.BusinessUnit.Application.Services.Commands">
  <UpdateServicesPriceCommand>
    <Id>1</Id>
    <Name>sample string 2</Name>
    <Price>1.1</Price>
  </UpdateServicesPriceCommand>
  <UpdateServicesPriceCommand>
    <Id>1</Id>
    <Name>sample string 2</Name>
    <Price>1.1</Price>
  </UpdateServicesPriceCommand>
</ArrayOfUpdateServicesPriceCommand>

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.