GET api/access/v1/companies/{companyId}/approved

Get the current assessment by your organisation onto the provided Company ID

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
companyId

The suppliers Company ID

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

Assessment
NameDescriptionTypeAdditional information
IsApproved

boolean

None.

PlantId

globally unique identifier

None.

CompanyId

globally unique identifier

None.

Response Formats

application/json, text/json

Sample:
{
  "IsApproved": true,
  "PlantId": "02286291-aaeb-446c-b8af-9f36f48cd7fb",
  "CompanyId": "f6b14369-f809-4bd2-a953-b65582fe1132"
}

application/xml, text/xml

Sample:
<CompaniesController.Assessment xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SSG.Endpoints.ITOps.DataAPI.Areas.Access.Controllers.v1">
  <CompanyId>f6b14369-f809-4bd2-a953-b65582fe1132</CompanyId>
  <IsApproved>true</IsApproved>
  <PlantId>02286291-aaeb-446c-b8af-9f36f48cd7fb</PlantId>
</CompaniesController.Assessment>