List Admin Permissions
Get the complete list of permission scopes you can assign to administrators. BotSubscription uses granular permissions to control what each admin can view and modify—from managing plans and memberships to accessing analytics and configuring settings.
GET
/v2/projects/{project_id}/admins/permissionsAuthorization
Bearer TokenRequired
Path Parameters
project_idstringRequired
The unique identifier of the project.
Request
curl -X GET "https://api.botsubscription.com/v2/projects/f47ac10b-58cc-4372-a567-0e02b2c3d479/admins/permissions" \
-H "Authorization: Bearer YOUR_TOKEN"{
"ok": true,
"request_id": "11111111-1111-1111-1111-111111111111",
"method": "GET",
"path": "/v2/projects/YOUR_PROJECT_ID/admins/permissions",
"code": 200,
"total": 80,
"message": "Permissions fetched successfully",
"data": [
"admins:add",
"admins:edit",
"admins:read",
"admins:update",
"agent:manage",
"agent:reply",
"all",
"backups:create",
"backups:read",
"backups:restore",
"ban:add",
"ban:read",
"ban:remove",
"coupons:add",
"coupons:delete",
"coupons:read",
"coupons:update",
"documents:delete",
"documents:read",
"memberships:add",
"memberships:admin",
"memberships:delete",
"memberships:read",
"memberships:update",
"memberships:write",
"merchant-accounts:add",
"merchant-accounts:delete",
"merchant-accounts:read",
"merchant-accounts:update",
"payment-requests:add",
"payment-requests:read",
"payment-requests:update",
"payment_methods:add",
"payment_methods:delete",
"payment_methods:read",
"payment_methods:update",
"payments:read",
"payments:write",
"plans:add",
"plans:delete",
"plans:edit",
"plans:manage",
"plans:read",
"plans:update",
"settings.appearance:delete",
"settings.appearance:read",
"settings.appearance:write",
"settings.community:delete",
"settings.community:read",
"settings.community:write",
"settings.integrations:delete",
"settings.integrations:read",
"settings.integrations:write",
"settings.notifications:delete",
"settings.notifications:read",
"settings.notifications:write",
"settings.sales:delete",
"settings.sales:read",
"settings.sales:write",
"settings.welcome:delete",
"settings.welcome:read",
"settings.welcome:write",
"settings:delete",
"settings:read",
"settings:update",
"settings:write",
"subscriptions:add",
"subscriptions:cancel",
"subscriptions:delete",
"subscriptions:read",
"targets:add",
"targets:delete",
"targets:read",
"targets:update",
"users:read",
"users:update",
"view_analytics",
"webhooks:create",
"webhooks:delete",
"webhooks:read"
]
}Last updated: