Enabling Felix Access for Account Users #
Overview #
Currently, Felix access is limited to users with the admin role. This guide shows how to enable Felix for users with the account user role.
Granting Felix Access #
API Method #
To give a specific user access to Felix, use the following API call:
fetch(
'https://app.funnelstory.ai/api/workspace/users/{user-id}/permissions',
{
method: 'PUT',
headers: {
'Content-Type': 'application/json',
'x-workspace-id': '{workspace-id}'
},
body: JSON.stringify({
permissions: ['chatbot:write'],
}),
}
);
Replace {user-id} with the ID of the user who needs Felix access.
Process #
-
Find the User ID:
- Go to https://app.funnelstory.ai/admin/team
- Go to the Network tab
- Look for the GET request to https://app.funnelstory.ai/api/workspace/users
- Find the user in the response and copy their user ID
-
Make the API Call shown above with the correct user ID
-
Verify Access by having the user log in and check for Felix features