Equipment Create
This event is used to notify whenever a new Equipment is created, allowing users to organize and manage equipment more efficiently.
Event Type: EQUIPMENT_CREATE
Enablement Package: Equipment Tracking
Subscription to the Equipment Tracking Package is mandatory.
Trigger Condition
Subscribe to the EQUIPMENT_CREATE webhook event. This event is triggered in real-time when an Equipment is created in the system
Example Payload
{
"messageType": "EQUIPMENT_CREATE",
"generatedAt": 1737479365569,
"data": {
"equipmentId": "62f075c8-bd85-458a-bac4-c44236fe500a",
"name": "TestE",
"categoryId": "f0ff8a51-92fa-4505-a10d-941d798c3214",
"categoryName": "Names",
"customerId": 2175,
"bleId": "18cffd0c-b30d-4674-b45d-a26cbd6bc2b6",
"bleSerialNumber": "2343344",
"brand":"Brand1",
"model": "Model1",
"assetId": "00926d58-2d29-11ef-a7b8-c3674e6051e3",
"assetName": "testicon",
"assetGroupId": "db6c11dc-4f9d-11e4-950e-699a6d6c7858",
"assetGroupName": "Default Group",
"equipmentTrackerSerialNum": "1047387838",
"equipmentTrackerDeviceId": "4gafaa4c-5057-4fdf-9a90-de4cdc2b4f15",
"custodyStatus": "Dropped",
"groupId":"db6c11dc-4f9d-11e4-950e-699a6d6c7858",
"groupName": "Default Group",
"purchaseVendor": "EQ-Vendor",
"purchasePrice": 350,
"purchaseDate": "2025-04-01 07:49:50",
"warrantyExp": "2025-07-08 07:49:54",
"inServiceDate": "2025-04-24 07:50:11",
"estServiceLife": 3,
"outServiceDate": "2025-04-30 07:50:18",
"createdBy": "8a9388a8-8b37-6e82-018b-dce53cfc6c1f",
"createdAt": "2025-01-21 17:09:22",
"updatedBy": "8a9388a8-8b37-6e82-018b-dce53cfc6c1f",
"updatedAt": "2025-01-21 17:09:22",
"mediaLinks": "[\"https://azuga-equipment-tracking-dev.s3.us-east-2.amazonaws.com/1059/a676f934-a74a-4f9e-8453-38c270beb67f/e67b9e4a-b089-4d80-a412-7ad582d15a4a.png\"]"
}
}
Reference
Field | Description |
---|---|
messageType | Type of message
Example: |
generatedAt | Time when event is generated in milliseconds
Example: |
data | JSON object containing data for the created Equipment |
equipmentId | The unique Azuga ID of the Equipment. This is automatically generated when the equipment object is created and cannot be altered.
Example: |
name | Name of the Equipment
Example: |
categoryId | The unique Azuga ID of the Category. This is automatically generated when the category object is created and cannot be altered.
Example: |
categoryName | Name of the Category
Example: |
customerId | The unique Azuga ID of the Customer
Example: |
bleId | The unique BLE Beacon ID assigned to identify this BLE device
Example: |
bleSerialNumber | Serial number of the BLE beacon device (Hardware identifier)
Example: |
brand | Brand Name of the Equipment
Example: |
model | Model Name of the Equipment
Example: |
assetId | The unique ID of the Asset to which equipment is associated
Example: |
assetName | Name of the Asset to which equipment is associated
Example: |
assetGroupId | Logical Group ID the asset belongs to
Example: |
assetGroupName | Name of the Group the asset belongs to
Example: |
equipmentTrackerSerialNum | Serial number of the equipment tracker device (Hardware identifier)
Example: |
equipmentTrackerDeviceId | The unique ID of the equipment tracker device
Example: |
custodyStatus | Signifies the current tracking status of the equipment. It can have two values. With: The equipment is actively being monitored or Dropped: The equipment is no longer being tracked.
Example: |
groupId | Logical Group ID the equipment belongs to
Example: |
groupName | Name of the group
Example: |
purchaseVendor | Name of the Vendor
Example: |
purchasePrice | Price of the Equipment in $
Example: |
purchaseDate | Purchase Date of the equipment in YYYY-MM-DD and HH:MM:SS format
Example: |
warrantyExp | Warranty Expiry Date of the equipment in YYYY-MM-DD and HH:MM:SS format
Example: |
inServiceDate | The Date when the equipment was activated in YYYY-MM-DD and HH:MM:SS
Example: |
estServiceLife | Estimated Service Life of the equipment in years
Example: |
outServiceDate | The Date when the equipment will be deactivated in YYYY-MM-DD and HH:MM:SS
Example: |
createdBy | The unique Azuga ID of the user who created the category
Example: |
createdAt | Time when category is created in YYYY-MM-DD and HH:MM:SS format
Example: |
updatedBy | The unique Azuga ID of the user who created the category
Example: |
updatedAt | Time when category is created in YYYY-MM-DD and HH:MM:SS format
Example: |
Updated 5 days ago