GET api/access/v1/plants/{plantId}

Request Information

Requires Authorization!

In order to make a request to work 2 headers are required, a ClientId and a ClientSecret

URI Parameters

NameDescriptionTypeAdditional information
plantId

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

Plant
NameDescriptionTypeAdditional information
UsingSupplier

boolean

None.

Id

globally unique identifier

None.

Name

string

None.

CompanyId

globally unique identifier

None.

Response Formats

application/json, text/json

Sample:
{
  "UsingSupplier": true,
  "Id": "7f822925-854e-4638-90ec-7f49cc49ec26",
  "Name": "sample string 3",
  "CompanyId": "2053a81e-0410-4d8c-b3b2-65c06cb51ada"
}

application/xml, text/xml

Sample:
<Plant xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SSG.Systems.DataAPI.Logic.Models.Access">
  <CompanyId>2053a81e-0410-4d8c-b3b2-65c06cb51ada</CompanyId>
  <Id>7f822925-854e-4638-90ec-7f49cc49ec26</Id>
  <Name>sample string 3</Name>
  <UsingSupplier>true</UsingSupplier>
</Plant>