For Agents
Claim, describe, enable, disable, and unclaim AWS IoT 1-Click button-style devices and inspect the events and methods exposed by each device.
Get started with AWS IoT 1-Click Devices Service in minutes using your preferred integration method.
# Add to your MCP client config (Claude Desktop, Cursor, Windsurf)
{
"jentic": {
"url": "https://api.jentic.com/mcp",
"auth": "oauth"
}
}
# Then ask your agent:
"claim an aws iot 1-click device"
# → Jentic returns the GET /events tool with parameter schema, agent executes.What an agent can do with AWS IoT 1-Click Devices Service API.
Claim batches of devices into the account using a printed claim code
Initiate and finalise per-device claim flows for retail or enterprise distribution
Describe a single device to read its type, attributes, and enabled state
Enable and disable individual devices without unclaiming them
GET STARTED
Use for: I need to claim a new batch of 1-Click devices into our account, Describe a specific device to read its model and current state, Disable a device that has been reported lost, List events from a button device within the last 24 hours
Not supported: Does not handle project workflow definitions, telemetry routing, or detector models — use for AWS IoT 1-Click device claiming and lifecycle management only.
Jentic publishes the only available OpenAPI specification for AWS IoT 1-Click Devices Service, keeping it validated and agent-ready.
Jentic publishes the only available OpenAPI specification for AWS IoT 1-Click Devices Service, keeping it validated and agent-ready. The IoT 1-Click Devices API manages the lifecycle of single-purpose, button-style hardware — claiming devices into an AWS account, querying their methods and events, enabling or disabling them, and unclaiming them when they are returned. With 13 operations it is the device-side counterpart to the 1-Click Projects API used to wire devices into application workflows.
List events emitted by a device within a given time window
List the device-specific methods available for invocation
Unclaim a device when it is returned, lost, or reassigned
Patterns agents use AWS IoT 1-Click Devices Service API for, with concrete tasks.
★ Retail Device Onboarding
Claim batches of buttons or compatible 1-Click devices using a single claim code provided in a shipment manifest. ClaimDevicesByClaimCode imports every device in the batch into the account in one call. From there, individual devices can be enabled, disabled, or assigned to projects without further claim steps.
Call PUT /claims/{claimCode} with the printed claim code to register the entire device batch into the account
Enterprise Asset Tracking
Track which 1-Click devices are deployed where by listing devices with ListDevices and reading per-device state with DescribeDevice. Enable and disable individual devices to disable lost hardware without unclaiming it, preserving the device record. Tags can be used to associate devices with locations or owners.
Call PUT /devices/{deviceId}/state with enabled=false to disable a reported-lost device, then list-tags to verify location and owner metadata
Event-Driven Diagnostics
Inspect a device's event history with ListDeviceEvents to diagnose why a button is misbehaving. The endpoint returns time-bound events including click types and device-side errors, which can be paired with cloud-side workflow logs for end-to-end debugging without physical access.
Call GET /devices/{deviceId}/events with fromTimeStamp set to 24 hours ago and toTimeStamp now to retrieve recent click and error events
AI Agent Fleet Operations
Through Jentic, an AI agent can manage a fleet of 1-Click devices in response to support tickets — disabling lost units, listing recent events for diagnostics, and unclaiming devices that have been returned. The 13 operations are exposed as discoverable Jentic tools.
Search Jentic for 'disable aws iot 1-click device', load the UpdateDeviceState schema, and execute with deviceId and enabled=false
13 endpoints — jentic publishes the only available openapi specification for aws iot 1-click devices service, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/claims/{claimCode}
ClaimDevicesByClaimCode — claim a batch of devices by printed claim code
/devices/{deviceId}
DescribeDevice — fetch a device's attributes and state
/devices/{deviceId}/finalize-claim
FinalizeDeviceClaim — finalise an individual device claim
/devices/{deviceId}/methods
GetDeviceMethods — list methods on a device
/devices/{deviceId}/initiate-claim
InitiateDeviceClaim — start a per-device claim flow
/devices/{deviceId}/events
ListDeviceEvents — list events emitted by a device
/devices/{deviceId}/state
UpdateDeviceState — enable or disable a device
/devices/{deviceId}
UnclaimDevice — remove a device from the account
/claims/{claimCode}
ClaimDevicesByClaimCode — claim a batch of devices by printed claim code
/devices/{deviceId}
DescribeDevice — fetch a device's attributes and state
/devices/{deviceId}/finalize-claim
FinalizeDeviceClaim — finalise an individual device claim
/devices/{deviceId}/methods
GetDeviceMethods — list methods on a device
/devices/{deviceId}/initiate-claim
InitiateDeviceClaim — start a per-device claim flow
Three things that make agents converge on Jentic-routed access.
Credential isolation
AWS access keys for IoT 1-Click Devices are stored encrypted in the Jentic vault. Agents never see the raw credentials — Jentic signs each request with SigV4 server-side.
Intent-based discovery
Agents search Jentic with intents like 'claim aws iot 1-click device' or 'disable button' and get back the matching operation with its input schema.
Time to first call
Direct integration: half a day to wire up the AWS SDK and IAM policies. Through Jentic: under 30 minutes.
Alternatives and complements available in the Jentic catalogue.
AWS IoT 1-Click Projects Service
Wires claimed devices into projects and placements that define their behaviour
Use 1-Click Projects to associate a device with a project and placement; use 1-Click Devices to manage the device record itself.
AWS IoT Events
Detector models that react to button click events from 1-Click devices
Use IoT Events to drive workflow logic from button presses; use 1-Click Devices to manage the underlying hardware.
AWS IoT Data Plane
General-purpose IoT runtime API for any MQTT-capable device, an alternative when devices are not 1-Click
Choose IoT Data Plane for general MQTT devices and shadows; choose 1-Click Devices specifically for AWS IoT 1-Click button hardware.
Specific to using AWS IoT 1-Click Devices Service API through Jentic.
Why is there no official OpenAPI spec for AWS IoT 1-Click Devices Service?
AWS does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call AWS IoT 1-Click Devices Service via structured tooling. It is validated against the live API and kept up to date. Get started at https://app.jentic.com/sign-up.
What authentication does the AWS IoT 1-Click Devices Service API use?
The API uses AWS Signature Version 4 (HMAC) request signing with an AWS access key ID and secret access key. Through Jentic, AWS credentials are stored encrypted in the vault and the agent never holds raw access keys.
Can I claim devices in bulk with the IoT 1-Click Devices API?
Yes. Call PUT /claims/{claimCode} with a claim code that ships with a batch of devices and every device in that batch is added to the account in a single operation. To claim individual devices, use InitiateDeviceClaim followed by FinalizeDeviceClaim.
What are the rate limits for the AWS IoT 1-Click Devices Service API?
AWS applies per-account, per-region request quotas to IoT 1-Click operations and these vary by call. List and describe operations have higher quotas than claim and unclaim operations. Check AWS Service Quotas for current limits.
How do I disable a lost device through Jentic?
Search Jentic for 'disable aws iot 1-click device', load the UpdateDeviceState schema, and execute with the deviceId and enabled=false. The device record is preserved so it can be re-enabled if it is later recovered.
Has AWS IoT 1-Click been deprecated?
AWS announced the end of life of IoT 1-Click in 2025. The API may still be reachable for existing accounts but new device claims may be restricted. Check AWS announcements before building new integrations against this service.
/devices/{deviceId}/events
ListDeviceEvents — list events emitted by a device
/devices/{deviceId}/state
UpdateDeviceState — enable or disable a device
/devices/{deviceId}
UnclaimDevice — remove a device from the account