Skip to main content

Groups and their assignment to users

Below guide provides list of attributes, operation and request format for Update Group operations supported by Vendasta.

Groups in Vendasta

Vendasta Groups are broadly classified into two categories, the first one is related to business users and the second one is related to platform users.

info

Groups in Vendasta are predefined and it can't be created, renamed or deleled through SCIM. In terms of group updated, only an user can be added to or removed from a group.

List of Business Groups

Here is the list of available groups you can assign to a business user.

Here AG-ID is the account group id or business location id

iddisplay nametypedescription
ba:access:AG-IDAG-IDbusinessAccess to the business location
ba:getStarted:AG-IDGet Started for AG-IDbusinessFeatureAccess to Get Started within the business location
ba:dashboard:AG-IDDashboard for AG-IDbusinessFeatureAccess to Dashboard within the business location
ba:inbox:AG-IDInbox for AG-IDbusinessFeatureAccess to Inbox within the business location
ba:messageInInbox:AG-IDMessaging in Inbox for AG-IDbusinessFeatureAccess to Messaging in Inbox within the business location
ba:myMeetings:AG-IDMy Meetings for AG-IDbusinessFeatureAccess to My Meetings within the business location
ba:store:AG-IDStore for AG-IDbusinessFeatureAccess to Store within the business location
ba:customerList:AG-IDCustomer List for AG-IDbusinessFeatureAccess to Customer List within the business location
ba:executiveReport:AG-IDExecutive Report for AG-IDbusinessFeatureAccess to Executive Report within the business location
ba:guides:AG-IDGuides for AG-IDbusinessFeatureAccess to Guides within the business location
ba:files:AG-IDFiles for AG-IDbusinessFeatureAccess to Files within the business location
ba:businessProfile:AG-IDBusiness Profile for AG-IDbusinessFeatureAccess to Business Profile within the business location
ba:socialConnection:AG-IDSocial Connections for AG-IDbusinessFeatureAccess to Social Connections within the business location
ba:orders:AG-IDOrders for AG-IDbusinessFeatureAccess to Orders within the business location
ba:invoices:AG-IDInvoices for AG-IDbusinessFeatureAccess to Invoices within the business location
ba:myProducts:AG-IDMy Products for AG-IDbusinessFeatureAccess to My Products within the business location

For example if AG-ID is AG-MXX5P286VP then the table will look similar to this below

iddisplay name
ba:access:AG-MXX5P286VPAG-MXX5P286VP
ba:getStarted:AG-MXX5P286VPGet Started for AG-MXX5P286VP
ba:dashboard:AG-MXX5P286VPDashboard for AG-MXX5P286VP

The same groups are shown in below image on how it reflects in Vendasta

To see this permission in partner centre go to partners.vendasta.com > Businesses > Users > Click Kebab Menu(3 vertical dot) on an user > Edit Permissions

Groups for business users

List of Platform Groups

Here is the list of available groups you can assign to a partner user.

iddisplay nametype
pc:accessPlatform AdminplatformFeature
pc:canCustomizeWhitelabelCan customize platformplatformFeature
pc:canAccessBillingCan manage company billingplatformFeature
pc:canManageSalesCan Manage SalesplatformFeature
pc:canManageAccountsCan Manage Accounts and UsersplatformFeature
pc:canManageTasksCan Manage Task ManagerplatformFeature
pc:canAccessBrandsCan Manage BrandplatformFeature
pc:canAccessMarketingCan manage marketingplatformFeature
pc:canAccessDashboardAccess to DashboardplatformFeature
pc:canAccessOrdersCan Manage OrdersplatformFeature
pc:canManageAdminsCan create and manage adminsplatformFeature
pc:canAccessMarketplaceCan Access MarketplaceplatformFeature
pc:canEnableAppsCan Enable ProductsplatformFeature
pc:canAccessCompanyProfileCan view and edit company profileplatformFeature
pc:canAccessAutomationsCan View and Edit AutomationsplatformFeature
pc:canManageRetailBillingCan manage retail billingplatformFeature
ssc:accessCan access Sales & Success CenterplatformFeature
ssc:manageIs sales managerplatformFeature
tm:accessCan access Task ManagerplatformFeature
tm:manageCan manage Task ManagerplatformFeature

The same groups are shown in below image on how it reflects in Vendasta

To see this permission in partner centre go to partners.vendasta.com > Administration > My Team > Click Kebab Menu(3 vertical dot) on an user > Edit Member

Groups for platform users Groups for platform users

Assigning a user to a group

Provide user access to a business location

For example we want to provide access to the business location AG-MXX5P286VP to an user. Now the id of the group is ba:access:AG-MXX5P286VP

Request PATCH /Groups/ba%3Aaccess%3AAG-MXX5P286VP HTTP/1.1

{
"schemas": ["urn:ietf:params:scim:api:messages:2.0:PatchOp"],
"Operations": [{
"op": "Add",
"path": "members",
"value": [{
"value": "U-e6d11318-2e15-e44c-bc82-77c6b7fc4fac"
}]
}]
}

Provide user access to a platform features

For example we want to make the user Platform Admin, the group id for this is pc:access

Request PATCH /Groups/pc%3Aaccess HTTP/1.1

{
"schemas": ["urn:ietf:params:scim:api:messages:2.0:PatchOp"],
"Operations": [{
"op": "Add",
"path": "members",
"value": [{
"value": "U-e6d11318-2e15-e44c-bc82-77c6b7fc4fac"
}]
}]
}

Removing a user from a group

For example we want to remove Platform Admin role from the user

Request PATCH /Groups/pc%3Aaccess HTTP/1.1

{
"schemas": ["urn:ietf:params:scim:api:messages:2.0:PatchOp"],
"Operations": [{
"op": "Remove",
"path": "members",
"value": [{
"value": "U-e6d11318-2e15-e44c-bc82-77c6b7fc4fac"
}]
}]
}