GET api/Company/GetCompanySectorsByBothIds/{sectorid}/{companyid}

Returns the companysector for a given sectorid and companyid

Request Information

URI Parameters

NameDescriptionTypeAdditional information
sectorid

integer

Required

companyid

integer

Required

Body Parameters

None.

Response Information

Resource Description

CompanySectors
NameDescriptionTypeAdditional information
Id

integer

None.

CompanyId

integer

None.

SectorId

integer

None.

Value

string

None.

Response Formats

application/json, text/json, text/html

Sample:
{
  "Id": 1,
  "CompanyId": 2,
  "SectorId": 3,
  "Value": "sample string 4"
}

application/xml, text/xml

Sample:
<CompanySectors xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NiceAPI.Managers">
  <CompanyId>2</CompanyId>
  <Id>1</Id>
  <SectorId>3</SectorId>
  <Value>sample string 4</Value>
</CompanySectors>