GET api/v0/Integrator/GetIntegrator?integratorId={integratorId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
integratorId

integer

Required

Body Parameters

None.

Response Information

Resource Description

IntegratorContract
NameDescriptionTypeAdditional information
IntegratorId

integer

None.

Name

string

None.

Remarks

string

None.

IsDisabled

boolean

None.

ExternalID

string

None.

Response Formats

application/json, text/json

Sample:
{
  "IntegratorId": 1,
  "Name": "sample string 2",
  "Remarks": "sample string 3",
  "IsDisabled": true,
  "ExternalID": "sample string 5"
}

application/xml, text/xml

Sample:
<IntegratorContract xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.agrifoodatsolutions.com/FDService/v0/contracts/2017/01">
  <ExternalID>sample string 5</ExternalID>
  <IntegratorId>1</IntegratorId>
  <IsDisabled>true</IsDisabled>
  <Name>sample string 2</Name>
  <Remarks>sample string 3</Remarks>
</IntegratorContract>