API Endpoint
https://api.xure.co/v1/lookup/enterprises

Lists all enterprises that may be referenced by certificates returned by the tracking API

List Certificate Enterprises GET

Retuns a list of all enterprises that may be referenced in certificate data returned through the Tracking API

Parameters

Response Parameters
ParameterDescription
Enterprises ListThe list of expected enterprise identifers
Name String
The name of the enterprise as shown on certificates
Identifier String
The unique identifer assigned to the enterprise
Schemes List
The list of schemes that use the enterprise
SchemeIdentifier String
The unique identifier assigned to the certification scheme
IsCurrent Boolean
Flag indicating if this enterprise is used on certificates issued against the latest scheme standard

XML

Example Request
GET https://api.xure.co/v1/lookup/enterprises.eb HTTP/1.1
Accept: text/xml
Response Schema
<?xml version="1.0" encoding="utf-8"?>
<xsd:schema elementFormDefault="qualified" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <xsd:element name="EnterpriseList">
    <xsd:complexType>
      <xsd:sequence>
        <xsd:element name="Enterprises">
          <xsd:annotation>
            <xsd:documentation>The list of expected enterprise identifers</xsd:documentation>
          </xsd:annotation>
          <xsd:complexType>
            <xsd:sequence>
              <xsd:element name="Item" minOccurs="0" maxOccurs="unbounded">
                <xsd:complexType>
                  <xsd:sequence>
                    <xsd:element name="Name" type="xsd:string">
                      <xsd:annotation>
                        <xsd:documentation>The name of the enterprise as shown on certificates</xsd:documentation>
                      </xsd:annotation>
                    </xsd:element>
                    <xsd:element name="Identifier" type="xsd:string">
                      <xsd:annotation>
                        <xsd:documentation>The unique identifer assigned to the enterprise</xsd:documentation>
                      </xsd:annotation>
                    </xsd:element>
                    <xsd:element name="Schemes">
                      <xsd:annotation>
                        <xsd:documentation>The list of schemes that use the enterprise</xsd:documentation>
                      </xsd:annotation>
                      <xsd:complexType>
                        <xsd:sequence>
                          <xsd:element name="Item" minOccurs="0" maxOccurs="unbounded">
                            <xsd:complexType>
                              <xsd:sequence>
                                <xsd:element name="SchemeIdentifier" type="xsd:string">
                                  <xsd:annotation>
                                    <xsd:documentation>The unique identifier assigned to the certification scheme</xsd:documentation>
                                  </xsd:annotation>
                                </xsd:element>
                                <xsd:element name="IsCurrent" type="xsd:boolean">
                                  <xsd:annotation>
                                    <xsd:documentation>Flag indicating if this enterprise is used on certificates issued against the latest scheme standard</xsd:documentation>
                                  </xsd:annotation>
                                </xsd:element>
                              </xsd:sequence>
                            </xsd:complexType>
                          </xsd:element>
                        </xsd:sequence>
                      </xsd:complexType>
                    </xsd:element>
                  </xsd:sequence>
                </xsd:complexType>
              </xsd:element>
            </xsd:sequence>
          </xsd:complexType>
        </xsd:element>
      </xsd:sequence>
    </xsd:complexType>
  </xsd:element>
</xsd:schema>
Example Response
HTTP/1.1 200 OK
Content-Type: text/xml

<?xml version="1.0" encoding="utf-8"?>
<EnterpriseList>
  <Enterprises>
    <Item>
      <Name>xsd:string</Name>
      <Identifier>xsd:string</Identifier>
      <Schemes>
        <Item>
          <SchemeIdentifier>xsd:string</SchemeIdentifier>
          <IsCurrent>xsd:boolean</IsCurrent>
        </Item>...</Schemes>
    </Item>...</Enterprises>
</EnterpriseList>

JSON

Example Request
GET https://api.xure.co/v1/lookup/enterprises.eb HTTP/1.1
Accept: application/json
Example Response
HTTP/1.1 200 OK
Content-Type: application/json

{"Enterprises":[{"Name":String,
      "Identifier":String,
      "Schemes":[{"SchemeIdentifier":String,
          "IsCurrent":Boolean},
        ...]},
    ...]}

Test