GET LookupData/IndustryTypes

Returns a list of industry types as used in sign up & file identity screens.

Request Information

URI Parameters

Name Description Type Additional information
WsAccessKey The Web Service access key for this user and file which allows access to the API for the associated file (found in File - Settings). Using OAuth authentication mechanism is the preferred method to allow API access. string

Optional. Legacy authentication method and only required if not using OAuth. OAuth is preferred.

FileId Specifies the file id of the file to perform the operation upon. integer

Required

Body Parameters

None.

Response Information

Resource Description

LookupDataResponse
Name Description Type Additional information
Data No documentation available. Collection of LookupData

None.

Response Formats

application/json, text/json

Sample:
{
  "Data": [
    {
      "Key": 1,
      "Value": "sample string 2"
    },
    {
      "Key": 1,
      "Value": "sample string 2"
    }
  ]
}

application/xml, text/xml

Sample:
<LookupDataResponse xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <Data>
    <LookupData>
      <Key>1</Key>
      <Value>sample string 2</Value>
    </LookupData>
    <LookupData>
      <Key>1</Key>
      <Value>sample string 2</Value>
    </LookupData>
  </Data>
</LookupDataResponse>