Get Rendering Quality List API

Purpose

The Get Rendering quality API is used to request the list of valid values that are in TowerCoverage.com. These values are used in the Coverage API so that a valid value is inserted to assign the appropriate rendering quality to your coverage.

Fields

Account

You can locate your Account ID in the API's Tab of your account settings and also within the iframe of your Multi Coverage.

API Key

Your API key can be located on the API's tab of your account settings. This is a required field and is what the API server will use to determine if you have sufficient API calls available on your account.

Code Examples

SOAP 1.1

Request

POST /towercoverage.asmx HTTP/1.1
Host: api.towercoverage.com
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://tempuri.org/GetRenderingQualityList"

<?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:Body>
    <GetRenderingQualityList xmlns="http://tempuri.org/">
      <Account>string</Account>
      <key>string</key>
    </GetRenderingQualityList>
  </soap:Body>
</soap:Envelope>

Response

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:Body>
    <GetRenderingQualityListResponse xmlns="http://tempuri.org/">
      <GetRenderingQualityListResult>
        <Rendering>
          <RenderingQualityid>int</RenderingQualityid>
          <RenderingQualityname>string</RenderingQualityname>
          <Error>string</Error>
        </Rendering>
        <Rendering>
          <RenderingQualityid>int</RenderingQualityid>
          <RenderingQualityname>string</RenderingQualityname>
          <Error>string</Error>
        </Rendering>
      </GetRenderingQualityListResult>
    </GetRenderingQualityListResponse>
  </soap:Body>
</soap:Envelope>

SOAP 1.2

Request

POST /towercoverage.asmx HTTP/1.1
Host: api.towercoverage.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:Body>
    <GetRenderingQualityList xmlns="http://tempuri.org/">
      <Account>string</Account>
      <key>string</key>
    </GetRenderingQualityList>
  </soap12:Body>
</soap12:Envelope>

Response

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:Body>
    <GetRenderingQualityListResponse xmlns="http://tempuri.org/">
      <GetRenderingQualityListResult>
        <Rendering>
          <RenderingQualityid>int</RenderingQualityid>
          <RenderingQualityname>string</RenderingQualityname>
          <Error>string</Error>
        </Rendering>
        <Rendering>
          <RenderingQualityid>int</RenderingQualityid>
          <RenderingQualityname>string</RenderingQualityname>
          <Error>string</Error>
        </Rendering>
      </GetRenderingQualityListResult>
    </GetRenderingQualityListResponse>
  </soap12:Body>
</soap12:Envelope> 

HTTP Get

Request

GET /towercoverage.asmx/GetRenderingQualityList?Account=string&key=string HTTP/1.1
Host: api.towercoverage.com

Response

HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<ArrayOfRendering xmlns="http://tempuri.org/">
  <Rendering>
    <RenderingQualityid>int</RenderingQualityid>
    <RenderingQualityname>string</RenderingQualityname>
    <Error>string</Error>
  </Rendering>
  <Rendering>
    <RenderingQualityid>int</RenderingQualityid>
    <RenderingQualityname>string</RenderingQualityname>
    <Error>string</Error>
  </Rendering>
</ArrayOfRendering>

HTTP Post

Request

POST /towercoverage.asmx/GetRenderingQualityList HTTP/1.1
Host: api.towercoverage.com
Content-Type: application/x-www-form-urlencoded
Content-Length: length

Account=string&key=string

Response

HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<ArrayOfRendering xmlns="http://tempuri.org/">
  <Rendering>
    <RenderingQualityid>int</RenderingQualityid>
    <RenderingQualityname>string</RenderingQualityname>
    <Error>string</Error>
  </Rendering>
  <Rendering>
    <RenderingQualityid>int</RenderingQualityid>
    <RenderingQualityname>string</RenderingQualityname>
    <Error>string</Error>
  </Rendering>
</ArrayOfRendering>