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: Launch an enrollment automation.
# Use the acs_system_id of the credential manager.
seam.user_identities.enrollment_automations.launch(
user_identity_id = user_identity.user_identity_id,
credential_manager_acs_system_id = credential_manager.acs_system_id,
create_credential_manager_user = True
)
# Step 3: Create a simulated, sandbox phone.
seam.phones.simulate.create_sandbox_phone(
user_identity_id = user_identity.user_identity_id
)PreviousIssuing Mobile Credentials from an Access Control SystemNextIntegrating into your Mobile Application
Last updated
Was this helpful?

