Jetstream API
...
API Endpoints
Device Commands

Get All RFID Tags

8min

About

Instruct the specified device to scan for RFID tags.

Command Type

Device is Online

Device is Offline

Not Synchronous, Queueable

Immediate execution, Published results

Queued execution, Published results

Parameters

Property

Location

Details

AccessKey

string Required Unique

Header

The access key for your user account.

This value is a 36-character GUID provided in your user profile.

DeviceName

string Required Unique

URL

The name of the device.

This value has a max length of 128 ASCII characters.

This value must adhere to this regular expression: ^[a-zA-Z0-9-_,. ]*$

Example

Request URL

GET https://api.jetstreamrfid.com/3/devices/{Device Name}/epclist

Request Body

None Required

Response Code

200 OK

Response Body

{ "CommandId": "6f05b39a-a7a8-4bff-b694-00117af4a6d4", "Status": "Queued", "ExceptionList": [], "OutputParameterList": [] }

Published CommandQueuedEvent

{ "Device": "MyDeviceName", "CommandId": "6f05b39a-a7a8-4bff-b694-00117af4a6d4", "CommandName": "GetEPCListCommand", "URI": "/3/Devices/MyDeviceName/epclist", "Verb": "Get", "User": "MyUserName", "Parameters": [], "Type": "CommandQueuedEvent", "EventId": "14858b69-f6ce-414d-b64b-531e1a0a06f4", "EventTime": "2018-05-17T16:22:29Z", "Version":3 }

Published CommandCompletionEvent

{ "CommandId": "6f05b39a-a7a8-4bff-b694-00117af4a6d4", "CommandName": "GetEPCListCommand", "OutputParameterList": [ { "Key": "EPC", "Value": "AD4424044149CB775C0000CB" }, { "Key": "EPC", "Value": "AD44240441498F755B0000C5" }, { "Key": "EPC", "Value": "AD4424044149A3795C0000C7" }, { "Key": "EPC", "Value": "AD4424044149F1765B0000CF" } ], "ExceptionList": [], "Device": "MyDeviceName", "ReceivedTime": "2017-05-17T16:23:10Z", "Type": "CommandCompletionEvent", "EventId": "c5ec82de-2284-4156-aa09-092669115b27", "EventTime": "2017-05-17T16:23:08Z", "Version":2 }

Version Changes

Added Version Property to Events.