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.
Recipes
1. Set records IDs
Set IDs of records that should be deleted via comma.curl -X DELETE \
-H "QB-Token: d9c91a69e552145f6fe24dbb40b50ac575012bba" \
"https://api.quickblox.com/data/MyScoreTable/5d87d328a28f9a545f1cb558,51c9ab92535c12951b0032dd,5d87d354a28f9a59df1cb557.json"
2. As a result, the API returns a '200 OK' status code which implies that records were deleted.
1. Set a record ID
Set the ID of the record that should be deleted.curl -X DELETE \
-H "QB-Token: d9c91a69e552145f6fe24dbb40b50ac575012bba" \
"https://api.quickblox.com/data/ScoreTable/5d87d2f4a28f9a48631cb55b.json"
2. As a result, the API returns a '200 OK' status code which implies that a record was deleted.
Delete many records with API key
1. Use 'Authorization' header to pass API key
curl -X DELETE \
-H "Authorization: ApiKey 28irlNAGasWDSupO9Vw0BBMZfuHrAUYKpmroS9yBORI" \
"https://api.quickblox.com/data/MyScoreTable/5d87d328a28f9a545f1cb558,51c9ab92535c12951b0032dd,5d87d354a28f9a59df1cb557.json"
2. Set records IDs
Set IDs of records that should be deleted via comma.curl -X DELETE \
-H "Authorization: ApiKey 28irlNAGasWDSupO9Vw0BBMZfuHrAUYKpmroS9yBORI" \
"https://api.quickblox.com/data/MyScoreTable/5d87d328a28f9a545f1cb558,51c9ab92535c12951b0032dd,5d87d354a28f9a59df1cb557.json"
3. As a result, the API returns a '200 OK' status code which implies that records were deleted.
Delete one record with API key
1. Use 'Authorization' header to pass API key
curl -X DELETE \
-H "Authorization: ApiKey 28irlNAGasWDSupO9Vw0BBMZfuHrAUYKpmroS9yBORI" \
"https://api.quickblox.com/data/ScoreTable/5d87d2f4a28f9a48631cb55b.json"
2. Set a record ID
Set the ID of the record that should be deleted.curl -X DELETE \
-H "Authorization: ApiKey 28irlNAGasWDSupO9Vw0BBMZfuHrAUYKpmroS9yBORI" \
"https://api.quickblox.com/data/ScoreTable/5d87d2f4a28f9a48631cb55b.json"
3. As a result, the API returns a '200 OK' status code which implies that a record was deleted.
Path Parameters
Custom object class name.
ID of the custom object record. Generated automatically by the server after record creation.
A user or application session token. See
Authentication page to learn more about session tokens. Must be used either QB-Token or Authorization.
Authorization
string
default:"ApiKey {your_api_key}"
API key from Dashboard. Expected format: ApiKey {your_api_key}. Must be used
either QB-Token or Authorization.
User ID. The user ID of the user on whose behalf the request is being made.
Responses
curl -X DELETE \
-H "QB-Token: d9c91a69e552145f6fe24dbb40b50ac575012bba" \
https://api.quickblox.com/data/ScoreTable/5d87d2f4a28f9a48631cb55b.json