0
0
Figmabi_tool~10 mins

Figma account and workspace setup - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to create a new Figma team workspace.

Figma
figma.teams.create({ name: [1] })
Drag options to blanks, or click blank then click option'
Atrue
B12345
Cnull
D'My Team'
Attempts:
3 left
💡 Hint
Common Mistakes
Using a number instead of a string for the team name.
Leaving the name blank or null.
2fill in blank
medium

Complete the code to invite a user to the Figma workspace by email.

Figma
figma.teams.invite({ team_id: 'team123', email: [1] })
Drag options to blanks, or click blank then click option'
A'user@example.com'
Buser.name
C12345
Dtrue
Attempts:
3 left
💡 Hint
Common Mistakes
Passing a variable without quotes.
Using a number or boolean instead of a string.
3fill in blank
hard

Fix the error in the code to set the workspace role for a user.

Figma
figma.teams.setRole({ team_id: 'team123', user_id: 'user456', role: [1] })
Drag options to blanks, or click blank then click option'
Aadmin
B'admin'
Ctrue
Dnull
Attempts:
3 left
💡 Hint
Common Mistakes
Using a bare word without quotes.
Passing a boolean or null instead of a string.
4fill in blank
hard

Fill both blanks to create a new Figma project inside a team workspace.

Figma
figma.projects.create({ team_id: [1], name: [2] })
Drag options to blanks, or click blank then click option'
A'team123'
B'New Project'
C12345
Dtrue
Attempts:
3 left
💡 Hint
Common Mistakes
Using numbers instead of strings for IDs.
Forgetting quotes around the project name.
5fill in blank
hard

Fill all three blanks to update a user's permissions in a Figma workspace.

Figma
figma.permissions.update({ team_id: [1], user_id: [2], permission: [3] })
Drag options to blanks, or click blank then click option'
A'team123'
B'user456'
C'edit'
Dtrue
Attempts:
3 left
💡 Hint
Common Mistakes
Passing booleans or numbers instead of strings.
Missing quotes around any of the values.