Jetstream API
...
API Endpoints
Alias Configuration
Create an Alias
6min
about add an alias to your jetstream application, defining which devices in your jetstream application may take on this alias 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 getting started docid\ bbifqiuixnd5iafmrebbi id ulong unique body response the id assigned to the newly created alias this value is generated by jetstream – do not define it in requests name string required unique body request response the name of the alias this value has a max length of 128 ascii characters this value must adhere to this regular expression ^\[a za z0 9 , ] $ devices array(string) required unique body request response the name(s) of the device(s) that can assume the alias this value has a max length of 128 ascii characters this value must adhere to this regular expression ^\[a za z0 9 , ] $ this property is required and must be included with all requests if there are no devices to define, define an empty array region string required body request response the geographic region that the rfid device is being placed this is used to create the most reliable and lowest latency connection to the device this value is one of the following possibilities us, eu, ap, usgov example request url post https //api jetstreamrfid com/3/aliases request body { "name" "myaliasname", "devices" \[ "mydevicename1", "mydevicename2" ], "region" "us" } response code 201 created response body { "id" 1, "name" "myaliasname", "devices" \[ "mydevicename1", "mydevicename2" ], "region" "us" } version changes none – this is a new endpoint