---
title: "Get an Action Attempt"
method: POST
path: "/action_attempts/get"
tags: ["/action_attempts"]
---

# Get an Action Attempt

`POST /action_attempts/get`

Returns a specified [action attempt](/core-concepts/action-attempts).

## Request body

- object
  - `action_attempt_id` string, uuid, required — ID of the action attempt that you want to get.

## Response `200`

OK

- object
  - `action_attempt` ActionAttempt, required — Represents an asynchronous action. Poll until status is success or error. See the [action_attempt object](/api/action_attempts/object).
    - `action_attempt_id` string, uuid, required — ID of the action attempt.
    - `action_type` string, required — Type of action being tracked.
    - `status` 'pending' | 'success' | 'error', required — Current status of the action.
    - `result` object, nullable — Result payload on success.
    - `error` object, nullable — Error details on failure.
      - `type` string
      - `message` string

## Other responses

- `400` — Bad Request
- `401` — Unauthorized

---

[API](https://skmtc.net/seam/apis/seam-connect.md) · [All operations](https://skmtc.net/seam/apis/seam-connect/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/seam/seam-connect/versions/00c35395ce12/schema)
