post https://api.quickblox.com/data/.json
To create a new record use a POST request with application/json
or application/x-www-form-urlencoded
content type of the POST body. Received values will be cast according to the class defined in QuickBlox Dashboard. The field that is present in the class but not specified in the POST request will have a null
value.
Recipes
Create record with permissions
Open Recipe
Create record
Open Recipe
Allowed permissions
Permission | Syntax | Example |
---|---|---|
Open | permissions.<CRUD_operation>.access | permissions.read.access=open |
Owner | permissions.<CRUD_operation>.access | permissions.read.access=owner |
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 |