List Phones

POST /phones/list ⇒ { phones: [phone, …] }

Returns a list of all phones.

To filter the list of returned phones by a specific owner user identity or credential, include the owner_user_identity_id or acs_credential_id, respectively, in the request body.

Request

await seam.phones.list({
  owner_user_identity_id: "22222222-2222-2222-2222-222222222222",
  acs_credential_id: "66666666-6666-6666-6666-666666666666",
});

Response

[{ "device_id": "22222222-2222-2222-2222-444444444444" }]

Authentication Methods

  • API key

  • Client session token

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

Request Parameters

owner_user_identity_id

Type: string Required: No

ID of the user identity that represents the owner by which to filter the list of returned phones.


acs_credential_id

Type: string Required: No

ID of the credential by which to filter the list of returned phones.


Return Type

Array<phone>

Last updated

Logo

© Seam Labs, Inc. All rights reserved.