Cloud APIs
StandardDataStoresApi_V2
deleteStandardDataStoreEntry

deleteStandardDataStoreEntry

Deletes an entry from a standard datastore.

Parameters

NameTypeDescription
universeIdIdentifierThe ID of the universe to delete the entry in.
dataStorestringthe name of the datastore to delete the entry in.
scope?stringThe optional scope of the dataStore.
entryIdstringThe ID (key / name) of the entry.

Example

const { data: success } = await StandardDataStoresApi_V2.deleteStandardDataStoreEntry({
  universeId: 5097539509,
  dataStore: "InventoryStore",
  entryId: "users/45348281",
}); 

Endpoint

DELETE /v2/universes/{universe}/data-stores/{data-store}/entries/{entryId}
DELETE /v2/universes/{universe}/data-stores/{data-store}/scopes/{scope}/entries/{entryId}