Bestellte Daten-Stores (Beta)

*Dieser Inhalt wurde mit KI (Beta) übersetzt und kann Fehler enthalten. Um diese Seite auf Englisch zu sehen, klicke hier.

OrderedDataStores

https://apis.roblox.com/ordered-data-stores

Liste

GET /v1/universes/{universeId}/orderedDataStores/{orderedDataStore}/scopes/{scope}/entries

Parameter

universeId string
Path
Erforderlich
orderedDataStore string
Path
Erforderlich
scope string
Path
Erforderlich
max_page_size number
page_token string
order_by string
filter string

Anfrage

curl

curl --location 'https://apis.roblox.com/ordered-data-stores/v1/universes/<universeId>/orderedDataStores/<orderedDataStore>/scopes/<scope>/entries' \
--header 'x-api-key: <insert-api-key>'

Rückmeldung

200 - OK
OK
Gibt zurück ein(e) object
entries array<object>
nextPageToken string

Erstellen

POST /v1/universes/{universeId}/orderedDataStores/{orderedDataStore}/scopes/{scope}/entries

Parameter

universeId string
Path
Erforderlich
orderedDataStore string
Path
Erforderlich
scope string
Path
Erforderlich
id string
Erforderlich
CreateEntryRequest
Body
Erforderlich

Anfrage

curl

curl --location 'https://apis.roblox.com/ordered-data-stores/v1/universes/<universeId>/orderedDataStores/<orderedDataStore>/scopes/<scope>/entries?id=<id>' \
--header 'x-api-key: <insert-api-key>' \
--header 'Content-Type: application/json' \
--data '{
"value": <long>
}'

Rückmeldung

200 - OK
OK
Gibt zurück ein(e) object
id string
path string
value number

Erhalten

GET /v1/universes/{universeId}/orderedDataStores/{orderedDataStore}/scopes/{scope}/entries/{entry}

Parameter

universeId string
Path
Erforderlich
orderedDataStore string
Path
Erforderlich
scope string
Path
Erforderlich
entry string
Path
Erforderlich

Anfrage

curl

curl --location 'https://apis.roblox.com/ordered-data-stores/v1/universes/<universeId>/orderedDataStores/<orderedDataStore>/scopes/<scope>/entries/<entry>' \
--header 'x-api-key: <insert-api-key>'

Rückmeldung

200 - OK
OK
Gibt zurück ein(e) object
id string
path string
value number

Löschen

DELETE /v1/universes/{universeId}/orderedDataStores/{orderedDataStore}/scopes/{scope}/entries/{entry}

Parameter

universeId string
Path
Erforderlich
orderedDataStore string
Path
Erforderlich
scope string
Path
Erforderlich
entry string
Path
Erforderlich

Anfrage

curl

curl --location --request DELETE 'https://apis.roblox.com/ordered-data-stores/v1/universes/<universeId>/orderedDataStores/<orderedDataStore>/scopes/<scope>/entries/<entry>' \
--header 'x-api-key: <insert-api-key>'

Rückmeldung

Aktualisieren

PATCH /v1/universes/{universeId}/orderedDataStores/{orderedDataStore}/scopes/{scope}/entries/{entry}

Parameter

universeIdId string
Path
Erforderlich
orderedDataStore string
Path
Erforderlich
scope string
Path
Erforderlich
entry string
Path
Erforderlich
UpdateEntryRequest
Body
Erforderlich
allow_missing boolean

Anfrage

curl

curl --location --request PATCH 'https://apis.roblox.com/ordered-data-stores/v1/universes/<universeId>/orderedDataStores/<orderedDataStore>/scopes/<scope>/entries/<entry>' \
--header 'x-api-key: <insert-api-key>' \
--header 'Content-Type: application/json' \
--data '{
"value": <long>
}'

Rückmeldung

200 - OK
OK
Gibt zurück ein(e) object
id string
path string
value number

Erhöhung

POST /v1/universes/{universeId}/orderedDataStores/{orderedDataStore}/scopes/{scope}/entries/{entry}:increment

Parameter

universeId string
Path
Erforderlich
orderedDataStore string
Path
Erforderlich
scope string
Path
Erforderlich
entry string
Path
Erforderlich
incrementEntryRequest
Body
Erforderlich

Anfrage

curl

curl --location 'https://apis.roblox.com/ordered-data-stores/v1/universes/<universeId>/orderedDataStores/<orderedDataStore>/scopes/<scope>/entries/<entry>:increment' \
--header 'x-api-key: <insert-api-key>' \
--header 'Content-Type: application/json' \
--data '{
"amount": <long>
}'

Rückmeldung

200 - OK
OK
Gibt zurück ein(e) object
id string
path string
value number

Objekte

Die folgenden Objekte beschreiben Nutzlasten, die akzeptiert oder zurückgegeben werden. Die einzelnen Endpunkte zeigen weitere Informationen darüber an, wann diese Objekte verwendet werden.

CreateEntryRequest

Attribute

value number

Entry

Attribute

id string
path string
value number

IncrementEntryRequest

Attribute

amount number

ListEntriesResponse

Attribute

entries array<object>
nextPageToken string

UpdateEntryRequest

Attribute

value number