Create a class to define any data structure you need. The class can be created by the account owner only.
Documentation Index
Fetch the complete documentation index at: https://docs.quickblox.com/llms.txt
Use this file to discover all available pages before exploring further.
Create class
2. Use a `fields` parameter to set custom fields
fields stores a set of unique keys each having an associated value parameter.5. Set CRUD operations
create, read, and update operations are set.6. Set access levels
open, not_allowed, and open_for_users_ids access levels are set.Create class with API key
3. Use a `fields` parameter to set custom fields
fields stores a set of unique keys each having an associated value parameter.6. Set CRUD operations
create, read, and update operations are set.7. Set access levels
open, not_allowed, and open_for_users_ids access levels are set.| Permission | Syntax | Example |
|---|---|---|
| Open | permissions.<CRUD_operation>.access | permissions.read.access=open |
| Owner | permissions.<CRUD_operation>.access | permissions.read.access=owner |
| Not allowed | permissions.<CRUD_operation>.access | permissions.read.access=not_allowed |
| Open for users IDs | permissions.<CRUD_operation>.access=open_for_users_ids permissions.<CRUD_operation>.ids=id_1,id_2,id_3,… | permissions.update.access=open_for_users_ids permissions.update.ids=3,12 |
| Open for groups | permissions.<CRUD_operation>.access=open_for_groups permissions.<CRUD_operation>.groups=group_name_1,group_name_2 | permissions.delete.access=open_for_groups permissions.delete.groups=experience,rate |
fields.{custom_field}=<field_type>.permission.<CRUD_operation>.access=<value> permission.<CRUD_operation>.<option>=<value>CRUD operations: create, read, update, delete. open, owner, not_allowed, open_for_users_ids, open_for_groups. ids, groups.ApiKey {your_api_key}. Must be used
either QB-Token or Authorization.201
403
422