Skip to main content

Field Computer - Summary

When accessing /FieldComputers URI via GET, the Slingshot API Server will return an XML document that contains the summary data of all Field Computers that are assigned to the API Key and Access Key contained in the request headers. This data will contain URI values that point to the details for each Field Computer in the list.

HTTP Method and URL

GET https://api.ravenslingshot.com/fieldcomputers

URL Parameters

None.

HTTP Query Parameters

To learn more about these parameters, read about Result Set Paging.

ParameterDescription
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 NameDescription
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>6</totalcount>
<pagesize>1000</pagesize>
<ispreviouspage>false</ispreviouspage>
<isnextpage>false</isnextpage>
<pageindex>0</pageindex>
<totalpages>1</totalpages>
<fieldcomputer>
<id>6565</id>
<name>30Nov2012</name>
<uri>https://api.ravenslingshot.com/fieldcomputers/6565</uri>
</fieldcomputer>
<fieldcomputer>
<id>6056</id>
<name>3-7-0-73</name>
<uri>https://api.ravenslingshot.com/fieldcomputers/6056</uri>
</fieldcomputer>
<fieldcomputer>
<id>5886</id>
<name>9-12-12</name>
<uri>https://api.ravenslingshot.com/fieldcomputers/5886</uri>
</fieldcomputer>
<fieldcomputer>
<id>5780</id>
<name>30Aug2012</name>
<uri>https://api.ravenslingshot.com/fieldcomputers/5780</uri>
</fieldcomputer>
<fieldcomputer>
<id>5718</id>
<name>24Aug2912</name>
<uri>https://api.ravenslingshot.com/fieldcomputers/5718</uri>
</fieldcomputer>
<fieldcomputer>
<id>5075</id>
<name>5057-3</name>
<uri>https://api.ravenslingshot.com/fieldcomputers/5075</uri>
</fieldcomputer>
</slingshotindex>

JSON

{
"FieldComputer": [
{
"ID": 6565,
"Name": "30Nov2012",
"Uri": "https://api.ravenslingshot.com/fieldcomputers/6565"
},
{
"ID": 6056,
"Name": "3-7-0-73",
"Uri": "https://api.ravenslingshot.com/fieldcomputers/6056"
},
{
"ID": 5886,
"Name": "9-12-12",
"Uri": "https://api.ravenslingshot.com/fieldcomputers/5886"
},
{
"ID": 5780,
"Name": "30Aug2012",
"Uri": "https://api.ravenslingshot.com/fieldcomputers/5780"
},
{
"ID": 5718,
"Name": "24Aug2912",
"Uri": "https://api.ravenslingshot.com/fieldcomputers/5718"
},
{
"ID": 5075,
"Name": "5057-3",
"Uri": "https://api.ravenslingshot.com/fieldcomputers/5075"
}
],
"TotalCount": 6,
"PageSize": 20,
"IsPreviousPage": false,
"IsNextPage": false,
"PageIndex": 0,
"TotalPages": 1
}