Get an Action Attempt

Returns a specified action attempt.

Returns a specified action attempt.

Code:

await seam.actionAttempts.get({
  action_attempt_id: "5f4e3d2c-1b0a-9f8e-7d6c-5b4a3c2d1e0f",
});

Output:

{
  "action_attempt_id": "5f4e3d2c-1b0a-9f8e-7d6c-5b4a3c2d1e0f",
  "action_type": "UNLOCK_DOOR",
  "error": null,
  "result": {},
  "status": "success"
}
Authentication Methods
  • API key

  • Client session token

  • Personal access token Must also include the seam-workspace header in the request.

To learn more, see Authentication.

Request Parameters

action_attempt_id String (Required)

ID of the action attempt that you want to get.


Response

action_attempt

Last updated

Was this helpful?