Developing in a Sandbox Workspace
Creating a Simulated Phone for a User Identity
# Step 1: Create the user identity.
user_identity = seam.user_identities.create(
user_identity_key = "jean_doe",
full_name = "Jean Doe"
)
# Step 2: Create a simulated, sandbox phone.
seam.phones.simulate.create_sandbox_phone(
user_identity_id = user_identity.user_identity_id
)UserIdentity(
user_identity_id='22222222-2222-2222-2222-222222222222',
user_identity_key='jean_doe',
full_name='Jean Doe',
...
)
Phone(
device_id='22222222-2222-2222-2222-444444444444',
device_type='android_phone',
created_at='2025-01-01T10:40:00+00:00',
...
)PreviousIssuing Mobile Credentials from an Access Control SystemNextIntegrating into Your Mobile Application
Last updated
Was this helpful?

