deleteStandardDataStoreEntry
Deletes an entry from a standard datastore.
Parameters
| Name | Type | Description |
|---|---|---|
| universeId | Identifier | The ID of the universe to delete the entry in. |
| dataStore | string | the name of the datastore to delete the entry in. |
| scope? | string | The optional scope of the dataStore. |
| entryId | string | The 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}