List Credentials

Returns a list of all credentials.

Returns a list of all credentials.

Code:

await seam.acs.credentials.list();

Output:

[
  {
    "access_method": "code",
    "acs_credential_id": "73a0a199-024f-454d-a916-9bbda8502c12",
    "acs_system_id": "b1d03165-2759-474b-a342-e02223f27b39",
    "acs_user_id": "0fc82df4-391b-4d00-a234-86378f1c3952",
    "code": "123456",
    "created_at": "2025-06-16T16:54:17.946514Z",
    "display_name": "FRONT_DOOR",
    "errors": [],
    "external_type": "salto_ks_credential",
    "external_type_display_name": "Salto KS Credential",
    "is_latest_desired_state_synced_with_provider": true,
    "is_managed": true,
    "is_multi_phone_sync_credential": false,
    "is_one_time_use": false,
    "latest_desired_state_synced_with_provider_at": "2025-06-18T16:54:17.946514Z",
    "starts_at": "2025-07-10T16:54:17.946512Z",
    "warnings": [],
    "workspace_id": "005f1e54-5360-40db-8c31-4ef6baaad1fd"
  }
]
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

acs_system_id String

ID of the access system for which you want to retrieve all credentials.


acs_user_id String

ID of the access system user for which you want to retrieve all credentials.


created_before String

Date and time, in ISO 8601 format, before which events to return were created.


is_multi_phone_sync_credential Boolean

Indicates whether you want to retrieve only multi-phone sync credentials or non-multi-phone sync credentials.


limit Number

Number of credentials to return.


page_cursor String

Identifies the specific page of results to return, obtained from the previous page's next_page_cursor.


search String

String for which to search. Filters returned credentials to include all records that satisfy a partial match using display_name, code, card_number, acs_user_id or acs_credential_id.


user_identity_id String

ID of the user identity for which you want to retrieve all credentials.


Response

Last updated

Was this helpful?