---
title: "Get an Unmanaged Access Method"
method: POST
path: "/access_methods/unmanaged/get"
---

# Get an Unmanaged Access Method

`POST /access_methods/unmanaged/get`

Gets an unmanaged access method (where is_managed = false).

## Request body

- object
  - `access_method_id` string, uuid, required — ID of unmanaged access method to get.

## Response `200`

OK

- object
  - `access_method` object, required — Represents an unmanaged access method. Unmanaged access methods do not have client sessions, instant keys, customization profiles, or keys.
    - `access_method_id` string, uuid, required — ID of the access method.
    - `code` string, nullable — The actual PIN code for code access methods.
    - `created_at` string, date-time, required — Date and time at which the access method was created.
    - `display_name` string, required — Display name of the access method.
    - `errors` object[], required — Errors associated with the [access method](/use-cases/granting-access/creating-an-access-grant).
      - `created_at` string, date-time, required — Date and time at which Seam created the error.
      - `error_code` 'failed_to_issue', required — Unique identifier of the type of error. Enables quick recognition and categorization of the issue.
      - `message` string, required — Detailed description of the error. Provides insights into the issue and potentially how to rectify it.
    - `is_assignment_required` boolean — Indicates whether an existing card credential must be assigned to this access method before it can be issued. Only applies to card-mode access methods on systems that support credential assignment.
    - `is_encoding_required` boolean — Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method.
    - `is_issued` boolean, required — Indicates whether the access method has been issued.
    - `is_ready_for_assignment` boolean — Indicates whether the access method is ready for card assignment. This is true when the access method is in card mode, has not yet been issued, and the system supports credential assignment.
    - `is_ready_for_encoding` boolean — Indicates whether the access method is ready to be encoded. This is true when the credential has been created and the card has not yet been issued.
    - `issued_at` string, date-time, nullable, required — Date and time at which the access method was issued.
    - `mode` 'code' | 'card' | 'mobile_key' | 'cloud_key', required — Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`.
    - `pending_mutations` union[], required — Pending mutations for the [access method](/use-cases/granting-access/creating-an-access-grant). Indicates operations that are in progress.
      - union
        - object — Seam is in the process of provisioning access for this access method on new devices.
          - `created_at` string, date-time, required — Date and time at which the mutation was created.
          - `from` object, required — Previous device configuration.
            - `device_ids` string[], required — Previous device IDs where access was provisioned.
          - `message` string, required — Detailed description of the mutation.
          - `mutation_code` 'provisioning_access', required — Mutation code to indicate that Seam is in the process of provisioning access for this access method on new devices.
          - `to` object, required — New device configuration.
            - `device_ids` string[], required — New device IDs where access is being provisioned.
        - object — Seam is in the process of revoking access for this access method from devices.
          - `created_at` string, date-time, required — Date and time at which the mutation was created.
          - `from` object, required — Previous device configuration.
            - `device_ids` string[], required — Previous device IDs where access existed.
          - `message` string, required — Detailed description of the mutation.
          - `mutation_code` 'revoking_access', required — Mutation code to indicate that Seam is in the process of revoking access for this access method from devices.
          - `to` object, required — New device configuration.
            - `device_ids` string[], required — New device IDs where access should remain.
        - object — Seam is in the process of updating the access times for this access method.
          - `created_at` string, date-time, required — Date and time at which the mutation was created.
          - `from` object, required — Previous access time configuration.
            - `ends_at` string, date-time, nullable, required — Previous end time for access.
            - `starts_at` string, date-time, nullable, required — Previous start time for access.
          - `message` string, required — Detailed description of the mutation.
          - `mutation_code` 'updating_access_times', required — Mutation code to indicate that Seam is in the process of updating the access times for this access method.
          - `to` object, required — New access time configuration.
            - `ends_at` string, date-time, nullable, required — New end time for access.
            - `starts_at` string, date-time, nullable, required — New start time for access.
    - `warnings` union[], required — Warnings associated with the [access method](/use-cases/granting-access/creating-an-access-grant).
      - union — Warning associated with the [access method](/use-cases/granting-access/creating-an-access-grant).
        - object — Indicates that the [access method](/use-cases/granting-access/creating-an-access-grant) is being deleted.
          - `created_at` string, date-time, required — Date and time at which Seam created the warning.
          - `message` string, required — Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.
          - `warning_code` 'being_deleted', required — Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.
        - object — Indicates that the access times for this [access method](/use-cases/granting-access/creating-an-access-grant) are being updated.
          - `created_at` string, date-time, required — Date and time at which Seam created the warning.
          - `message` string, required — Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.
          - `warning_code` 'updating_access_times', required — Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.
        - object — Indicates that all attempts to create an access code on this device before the start time failed and a backup access code was used to ensure access was provided in time.
          - `created_at` string, date-time, required — Date and time at which Seam created the warning.
          - `message` string, required — Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.
          - `original_access_method_id` string, uuid — ID of the original access method from which this backup access method was split, if applicable.
          - `warning_code` 'pulled_backup_access_code', required — Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.
        - object — Indicates that Seam has not yet issued this [access method](/use-cases/granting-access/creating-an-access-grant), even though its access grant is about to begin, so access may not be ready when the recipient arrives. Seam is still attempting to issue it, and this warning clears automatically once issuance succeeds.
          - `created_at` string, date-time, required — Date and time at which Seam created the warning.
          - `message` string, required — Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.
          - `warning_code` 'delay_in_issuing', required — Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.
    - `workspace_id` string, uuid, required — ID of the Seam workspace associated with the access method.

## 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)
