Update a Device
await seam.devices.update({
device_id: "ccfab465-4838-4ff3-af62-97c78e8bf44b",
name: "My Updated Device",
is_managed: true,
custom_metadata: { id: "internalId1" },
});// voidcurl --include --request POST "https://connect.getseam.com/devices/update" \
--header "Authorization: Bearer $SEAM_API_KEY" \
--json @- <<EOF
{
"device_id": "ccfab465-4838-4ff3-af62-97c78e8bf44b",
"name": "My Updated Device",
"is_managed": true,
"custom_metadata": {
"id": "internalId1"
}
}
EOF{}Request Parameters
Response
Last updated
Was this helpful?

