POST api/Partner/{id}/changCategory

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

ChangeCategory
NameDescriptionTypeAdditional information
Services

Collection of integer

None.

CategoryName

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Services": [
    1,
    2
  ],
  "CategoryName": "sample string 1"
}

application/xml, text/xml

Sample:
<ChangeCategory xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Hub.Server.Models.DTO">
  <CategoryName>sample string 1</CategoryName>
  <Services xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:int>1</d2p1:int>
    <d2p1:int>2</d2p1:int>
  </Services>
</ChangeCategory>

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.