DataScope Select API
ExtractionService


Further information on working with the API in your development environment is provided in the following three guides:


Click here for a complete list of operations.

Extract

Test

The test form is only available for requests from the local machine.

SOAP 1.1

The following is a sample SOAP 1.1 request and response. The placeholders shown need to be replaced with actual values.

POST /DatascopeApi/v1/ExtractionService.asmx HTTP/1.1
Host: selectapi1.datascope.refinitiv.com
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://datascope.com/select/ExtractionService/v1/Extract"

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Header>
    <CredentialsHeader xmlns="http://datascope.com/select/ExtractionService/v1/">
      <Username>string</Username>
      <Password>string</Password>
      <AuthenticationToken>string</AuthenticationToken>
    </CredentialsHeader>
    <EjvServerHeader xmlns="http://datascope.com/select/ExtractionService/v1/">
      <Server>string</Server>
    </EjvServerHeader>
  </soap:Header>
  <soap:Body>
    <Extract xmlns="http://datascope.com/select/ExtractionService/v1/">
      <request>
        <OutputFields>
          <string>string</string>
          <string>string</string>
        </OutputFields>
      </request>
    </Extract>
  </soap:Body>
</soap:Envelope>
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Header>
    <CredentialsHeader xmlns="http://datascope.com/select/ExtractionService/v1/">
      <Username>string</Username>
      <Password>string</Password>
      <AuthenticationToken>string</AuthenticationToken>
    </CredentialsHeader>
    <OperationInfoHeader xmlns="http://datascope.com/select/ExtractionService/v1/">
      <Host>string</Host>
      <EjvServer>string</EjvServer>
      <ProcessingTime>duration</ProcessingTime>
    </OperationInfoHeader>
  </soap:Header>
  <soap:Body>
    <ExtractResponse xmlns="http://datascope.com/select/ExtractionService/v1/">
      <ExtractResult>
        <RowCount>int</RowCount>
        <Columns>
          <ExtractionColumn>
            <Name>string</Name>
            <DataType>string</DataType>
            <Values xsi:nil="true" />
            <FromInvalidOutputField>boolean</FromInvalidOutputField>
          </ExtractionColumn>
          <ExtractionColumn>
            <Name>string</Name>
            <DataType>string</DataType>
            <Values xsi:nil="true" />
            <FromInvalidOutputField>boolean</FromInvalidOutputField>
          </ExtractionColumn>
        </Columns>
        <Messages>
          <string>string</string>
          <string>string</string>
        </Messages>
      </ExtractResult>
    </ExtractResponse>
  </soap:Body>
</soap:Envelope>

SOAP 1.2

The following is a sample SOAP 1.2 request and response. The placeholders shown need to be replaced with actual values.

POST /DatascopeApi/v1/ExtractionService.asmx HTTP/1.1
Host: selectapi1.datascope.refinitiv.com
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Header>
    <CredentialsHeader xmlns="http://datascope.com/select/ExtractionService/v1/">
      <Username>string</Username>
      <Password>string</Password>
      <AuthenticationToken>string</AuthenticationToken>
    </CredentialsHeader>
    <EjvServerHeader xmlns="http://datascope.com/select/ExtractionService/v1/">
      <Server>string</Server>
    </EjvServerHeader>
  </soap12:Header>
  <soap12:Body>
    <Extract xmlns="http://datascope.com/select/ExtractionService/v1/">
      <request>
        <OutputFields>
          <string>string</string>
          <string>string</string>
        </OutputFields>
      </request>
    </Extract>
  </soap12:Body>
</soap12:Envelope>
HTTP/1.1 200 OK
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Header>
    <CredentialsHeader xmlns="http://datascope.com/select/ExtractionService/v1/">
      <Username>string</Username>
      <Password>string</Password>
      <AuthenticationToken>string</AuthenticationToken>
    </CredentialsHeader>
    <OperationInfoHeader xmlns="http://datascope.com/select/ExtractionService/v1/">
      <Host>string</Host>
      <EjvServer>string</EjvServer>
      <ProcessingTime>duration</ProcessingTime>
    </OperationInfoHeader>
  </soap12:Header>
  <soap12:Body>
    <ExtractResponse xmlns="http://datascope.com/select/ExtractionService/v1/">
      <ExtractResult>
        <RowCount>int</RowCount>
        <Columns>
          <ExtractionColumn>
            <Name>string</Name>
            <DataType>string</DataType>
            <Values xsi:nil="true" />
            <FromInvalidOutputField>boolean</FromInvalidOutputField>
          </ExtractionColumn>
          <ExtractionColumn>
            <Name>string</Name>
            <DataType>string</DataType>
            <Values xsi:nil="true" />
            <FromInvalidOutputField>boolean</FromInvalidOutputField>
          </ExtractionColumn>
        </Columns>
        <Messages>
          <string>string</string>
          <string>string</string>
        </Messages>
      </ExtractResult>
    </ExtractResponse>
  </soap12:Body>
</soap12:Envelope>