Skip to main content
DELETE
/
data
/
{class_name}
/
{custom_object_record_id}
,
{custom_object_record_id}
.json
curl -X DELETE \
-H "QB-Token: d9c91a69e552145f6fe24dbb40b50ac575012bba" \
https://api.quickblox.com/data/ScoreTable/5d87d2f4a28f9a48631cb55b.json
{}

Recipes

1

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

2. As a result, the API returns a '200 OK' status code which implies that records were deleted.

curl -X DELETE \
-H "QB-Token: d9c91a69e552145f6fe24dbb40b50ac575012bba" \
"https://api.quickblox.com/data/MyScoreTable/5d87d328a28f9a545f1cb558,51c9ab92535c12951b0032dd,5d87d354a28f9a59df1cb557.json"
1

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

2. As a result, the API returns a '200 OK' status code which implies that a record was deleted.

curl -X DELETE \
-H "QB-Token: d9c91a69e552145f6fe24dbb40b50ac575012bba" \
"https://api.quickblox.com/data/ScoreTable/5d87d2f4a28f9a48631cb55b.json"

Path Parameters

class_name
string
required
Custom object class name.
custom_object_record_id
string
required
ID of the custom object record. Generated automatically by the server after record creation.

Headers

QB-Token
string
required
A user or application session token. See Authentication page to learn more about session tokens. Must be used either QB-Token or Authorization.

Responses

A successful response
curl -X DELETE \
-H "QB-Token: d9c91a69e552145f6fe24dbb40b50ac575012bba" \
https://api.quickblox.com/data/ScoreTable/5d87d2f4a28f9a48631cb55b.json
{}
I