TagMatiks Wedge - iOS Help

Export Configurations

 
Summary:

As RFID data is collected and filtered, there are a variety of options in terms of how it can be exported from TagMatiks Wedge to be used in other systems. The export configurations allow you to specify what data and formatted is exported.

Options include

  • Export Inventory details as Text
  • Export Inventory details as CSV
  • Export Inventory details as PDF
  • Share Inventory details into other apps as CSV
  • Export Inventory using Restful API as JSON and XML
A. Export Inventory details as Text

Navigate to export configuration by Menu -> Application Configuration -> Export Configurations.

Then select the export type as “Export As Text”, from the drop-down list.

Click on Text Settings, it will expand to provide additional options.

File Prefixes are used as a prefix for a file name when exporting it in inventory.

A separator is used as a separator for each value when exporting the report. If there is no separator provided then by default comma(,) will be used as a separator.

Fig 0.1 :Export Type as Text
Fig 0.2:Export Type as Text with Text Settings

To choose what data is exported, click on Export Field Settings. Select the fields which you want to see in the exported file. You can select the attributes from System Fields and Reference Fields as shown in the image below.

Fig 0.3: Export Type as Text with Field Settings

Note : Reference Fields are those attributes which are present in the Reference File.

Enter the Report name and tap on ( ) icon to save the Export Field Configuration. A notification will appear stating “Export Field Updated Successfully” as shown in the image below.

 

Similarly, you can create multiple Export Field profiles by tapping on the (+) icon and can select the profile according to the requirement.

Fig 0.4: Save Report
Fig 0.5: Report List

Note : The Export Field profile can be edited and deleted by swiping it from right to left

B. Export Inventory details as CSV

Navigate to export configuration by Menu -> Application Configuration -> Export Configurations.

Then select the export type as “Export As CSV”, from the drop-down list.

Click on Text Settings, it will expand to provide additional options.

File Prefixes are used as a prefix for a file name when exporting it in inventory.

Fig 0.6: Select Export Type as CSV
Fig 0.7: Export Type as CSV with Text Settings

To choose what data is exported, click on Export Field Settings. Select the fields which you want to see in the exported file. You can select the attributes from System Fields and Reference Fields as shown in the image below.

Fig 0.8: Export Type as CSV with Field Settings

Note : Reference Fields are those attributes which are present in the Reference File.

Enter the Report name and tap on ( ) icon to save the Export Field Configuration. A notification will appear stating “Export Field Updated Successfully” as shown in the image below.

Similarly, you can create multiple Export Field profiles by tapping on the (+) icon and can select the profile according to the requirement.

Fig 0.9: Save Report
Fig 1.0: Report List

Note : The Export Field profile can be edited and deleted by swiping it from right to left

C. Export Inventory details as PDF

Navigate to export configuration by Menu -> Application Configuration -> Export Configurations.

Then select the export type as “Export As PDF”, from the drop-down list.

Click on Text Settings, it will expand to provide additional options.

File Prefixes are used as a prefix for a file name when exporting it in inventory.

Fig 1.1: Select Export Type as PDF
Fig 1.2: Export Type as PDF with Text Settings

To choose what data is exported, click on Export Field Settings. Select the fields which you want to see in the exported file. You can select the attributes from System Fields and Reference Fields as shown in the image below.

Fig 1.3: Export Type as PDF with Field Settings

Note : Reference Fields are those attributes which are present in the Reference File.

Enter the Report name and tap on ( ) icon to save the Export Field Configuration. A notification will appear stating “Export Field Updated Successfully” as shown in the image below.

Similarly, you can create multiple Export Field profiles by tapping on the (+) icon and can select the profile according to the requirement.

Fig 1.4: Save Report
Fig 1.5: Report List
D. Share Inventory details into other apps as CSV

Navigate to export configuration by Menu -> Application Configuration -> Export Via Share Activity.

Then select the export type as “Export Via Share Activity”, from the drop-down list.

To choose what data is exported, click on Export Field Settings. Select the fields which you want to see in the exported file. You can select the attributes from System Fields and Reference Fields as shown in the image below.

Fig 1.6: Select Export Type as Share Activity
Fig1.7: Export Type as Share Activity with Field Settings.

Note : Reference Fields are those attributes which are present in the Reference File.

Enter the Report name and tap on ( ) icon to save the Export Field Configuration. A notification will appear stating “Export Field Updated Successfully” as shown in the image below.

Similarly, you can create multiple Export Field profiles by tapping on the (+) icon and can select the profile according to the requirement.

Fig 1.8: Save Report
Fig 1.9: Report List
E. Export Inventory using Restful API as JSON and XML

The export inventory using RESTful API makes it easy to quickly integrate RFID data to other systems.

Navigate to export configuration by Menu -> Application Configuration -> Export Configuration—-> Select Export via API.

URL is the API endpoint to which the Exported Data must be sent. A valid URL must be given to proceed.

We support exporting data to RESTful API by using JSON or XML format as described in the sample data format.

Fig 2.0: Sample JSON Data
Fig 2.1: Sample JSON Data
API Version

We having the two different version V1 & V2

V1 API returns the limited fields like the System & Reference fields (Based on the Import file).

System Fields:

 

Parameter Data Type Sample Value
EPC String 00000000004D6F6E69746F72
epc_ascii String Monitor
RSSI String -32.1
ReadCount String 5
Latitude String 11.102256
Longitude String 76.987613
Read Time String 08/03/2020 10:00 PM
Company Prefix String 1234567
GS1KeyIdentifier String SGTIN
Reference String 987654
Piece String 1
Piece Total String 1
SerialNumber String 1234567890
GTIN String 1234567890
SSCC String 1234567890
GLN String 1234567890
GRAI String 1234567890
GIAI String 1234567890
GSRN String 1234567890
GSRNP String 1234567890
GDTI String 1234567890
CPI String 1234567890
ITIP String 1234567890
User Memory Bank String LOT-1234567
ChipManufacturer String Impinj
ChipModel String Monza 4E
Chip Serial Number String 12324324224
Chip Serial Size (Bits) String 32
Chip Serial Size (Bytes) String 4
Chip Serial URI String 12336555969
Sensor Status Type String Impact
Location Detail String Orlando, Florida, USA

 

Sample JSON Data:

						[{
                        "EPC": "00000000004D6F6E69746F72",
                        "epc_ascii": "Monitor",
                        "RSSI": "-32.1",
                        "ReadCount": "5",
                        "Latitude": "11.102256",
                        "Longitude": "76.987613",
                        "ReadTime": "08/03/2020 10:00 PM",
                        "EPCBank": "",
                        "Location Detail": "Seattle, Washington, United States",
                        "Quantity": "1"
                        },
                        {
                         "EPC": "00000000000000004350550A",
                         "epc_ascii": "CPU",
                         "RSSI": "-24",
                         "ReadCount": "2",
                         "Latitude": "13.20202",
                         "Longitude": "68.987468",
                         "ReadTime": "09/03/2020 11:32 AM",
                         "EPCBank": "AAAAAAAAAAAAAAAAAAAAAA12",
                         "Location Detail": "Cupertino, California, United States",
                         "Quantity": "1"
                        }
                        ]
		
		
					

V2 API returns the System & Reference fields (Based on the Import file) With Inventory details like Inventory Name, Notes, Inventory DateTime and User Details.

V2 Fields:

 

Parameter Data Type Value
InventoryId Int 1
IsArchieved Int 0
InventoryName String Weekly
InventoryNotes String test notes
InventoryDate String 05/21/2020 08:10 PM
UserFirstName String Tony
UserLastName String Stark
UserPhone String 00 000 000 0000
UserEmail String test@rfid4u.com
InventoryItems Array System Fields
 

Sample JSON Data

						
{
  "InventoryId": "1",
  "IsArchived": "0",
  "InventoryName": "Weekly",
  "InventoryNotes": "test notes",
  "InventoryDate": "05/21/2020 08:10 PM",
  "UserFirstName": "Tony",
  "UserLastName": "Stark",
  "UserPhone": "00 000 000 0000",
  "UserEmail": "test@rfid4u.com",
  "DeviceId": "6A67474-8672-4ABC-A57B-52EA09C5D",
  "WedgeData": [
    {
      "EPC": "00000000004D6F6E69746F72",
      "epc_ascii": "Monitor",
      "RSSI": "-48.1",
      "ReadCount": "5",
      "Latitude": "11.102256",
      "Longitude": "76.987613",
      "Location Detail": "Seattle, Washington, United States",
      "ReadTime": "05/21/2020 08:10 PM",
      "CompanyPrefix": "1234567",
      "GS1KeyIdentifier": "SGTIN",
      "Reference": "987654",
      "Piece": "",
      "PieceTotal": "",
      "SerialNumber": "1234567890",
      "GTIN": "1234567890",
      "SSCC": "1234567890",
      "GLN": "1234567890",
      "GRAI": "1234567890",
      "GSRN": "1234567890",
      "GSRNP": "1234567890",
      "GDTI": "1234567890",
      "GCN": "1234567890",
      "GSIN": "1234567890",
      "ITIP": "1234567890",
      "UPUI": "1234567890",
      "PGLN": "1234567890",
      "UserBank": "LOT-1234567",
      "ChipManufacturer": "Impinj",
      "ChipModel": "Monza 4E",
      "ChipSerialNumber": "12324324224",
      "ChipSerialSizeBits": "32",
      "ChipSerialSizeBytes": "4",
      "STIDURI": "urn:epc:stid:x801.x170.x11EF6D27097B"
    },
    {
      "EPC": "00000000000000004350550A",
      "epc_ascii": "CPU",
      "RSSI": "-24",
      "ReadCount": "2",
      "Latitude": "11.102256",
      "Longitude": "76.987613",
      "Location Detail": "Cupertino, California, United States",
      "ReadTime": "08/03/2020 10:00 PM",
      "CompanyPrefix": "1234567",
      "GS1KeyIdentifier": "ITIP",
      "Reference": "987654",
      "Piece": "99",
      "PieceTotal": "1999",
      "SerialNumber": "1234567890",
      "GTIN": "1234567890",
      "SSCC": "1234567890",
      "GLN": "1234567890",
      "GRAI": "1234567890",
      "GSRN": "1234567890",
      "GSRNP": "1234567890",
      "GDTI": "1234567890",
      "GCN": "1234567890",
      "GSIN": "1234567890",
      "ITIP": "1234567890",
      "UPUI": "1234567890",
      "PGLN": "1234567890",
      "UserBank": "LOT-1234567",
      "ChipManufacturer": "Alien Technology",
      "ChipModel": "Higgs EC",
      "ChipSerialNumber": "12324324224",
      "ChipSerialSizeBits": "32",
      "ChipSerialSizeBytes": "4",
      "STIDURI": "urn:epc:stid:x801.x170.x11EF6D27097B"
    }
  ]
}
					

 

You can verify the HTTP Post method is working right away after entering the URL and Format. Click on the Test Sample Data button at the bottom of the page.

To choose what data is exported, click on Export Field Settings. Select the fields which you want to see in the exported file. You can select the attributes from System Fields and Reference Fields as shown in the image below.

Fig 2.2: Export Field settings for Via API.

Note : Reference Fields are those attributes which are present in the Reference File.

Enter the Report name and tap on ( ) icon to save the Export Field Configuration. A notification will appear stating “Export Field Updated Successfully” as shown in the image below.

Similarly, you can create multiple Export Field profiles by tapping on the (+) icon and can select the profile according to the requirement.

Fig 2.3: Save Report
Fig 2.4: Report List

Note : The Export Field profile can be edited and deleted by swiping it from right to left