Prescription Maps - Summary
When accessing /PrescriptionMaps via GET, the Slingshot API Server will return a XML document with summary data.
HTTP Method and URL
GET https://api.ravenslingshot.com/prescriptionmaps
URL Parameters
None.
HTTP Query Parameters
To learn more about these parameters, read about Result Set Paging.
| Header | Description | 
|---|---|
| pagesize | [Optional] Number of rows to return for a result page. | 
| page | [Optional] Specific result page to return. | 
HTTP Headers
To learn more about these parameters, read about Authentication.
| Header | Description | 
|---|---|
| X-SS-AccessKey | [Required] Token issued to a Slingshot user from the Raven Slingshot Portal Server. | 
| X-SS-APIKey | [Required] Token issued to the Slingshot developer from Raven. | 
| X-SS-Signature | [Required] The signature generated for a specific request. | 
| X-SS-TimeStamp | [Required] The timestamp of when the request was generated. | 
Sample Responses
XML
<!--?xml version="1.0" encoding="utf-8"?-->
<slingshotindex xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.ravenslingshot.com/SlingshotIndex/2010">
    <totalcount>24</totalcount>
    <pagesize>2</pagesize>
    <ispreviouspage>false</ispreviouspage>
    <isnextpage>true</isnextpage>
    <pageindex>0</pageindex>
    <totalpages>12</totalpages>
    <prescriptionmap>
        <id>7804749</id>
        <name>PrescriptionMap.zip</name>
        <uri>https://api.ravenslingshot.com/PrescriptionMaps/7804749</uri>
        <subtype>Prescription Map</subtype>
    </prescriptionmap>
</slingshotindex>
JSON
{
	"TotalCount": 24,
	"PageSize": 2,
	"IsPreviousPage": false,
	"IsNextPage": true,
	"PageIndex": 0,
	"TotalPages": 12,
	"PrescriptionMap": [
		{
			"ID": 7804749,
			"Name": "PrescriptionMap.zip",
			"Uri": "https://api.ravenslingshot.com/PrescriptionMaps/7804749",
			"SubType": "Prescription Map"
		},
		{
			"ID": 7798049,
			"Name": "PrescriptionMap.zip",
			"Uri": "https://api.ravenslingshot.com/PrescriptionMaps/7798049",
			"SubType": "Prescription Map"
		}
	]
}