Przechowywanie danych z zamówienia (Beta)

*Ta zawartość została przetłumaczona przy użyciu narzędzi AI (w wersji beta) i może zawierać błędy. Aby wyświetlić tę stronę w języku angielskim, kliknij tutaj.

OrderedDataStores

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

Lista

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

Parametry

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

Żądanie

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>'

Odpowiedź:

200 - OK
OK
Zwraca: object
entries array<object>
nextPageToken string

Tworzyć

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

Parametry

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

Żądanie

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>
}'

Odpowiedź:

200 - OK
OK
Zwraca: object
id string
path string
value number

Zdobądź

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

Parametry

universeId string
Path
Wymagane
orderedDataStore string
Path
Wymagane
scope string
Path
Wymagane
entry string
Path
Wymagane

Żądanie

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>'

Odpowiedź:

200 - OK
OK
Zwraca: object
id string
path string
value number

Usuń

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

Parametry

universeId string
Path
Wymagane
orderedDataStore string
Path
Wymagane
scope string
Path
Wymagane
entry string
Path
Wymagane

Żądanie

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>'

Odpowiedź:

Aktualizacja

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

Parametry

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

Żądanie

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>
}'

Odpowiedź:

200 - OK
OK
Zwraca: object
id string
path string
value number

Przychód

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

Parametry

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

Żądanie

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>
}'

Odpowiedź:

200 - OK
OK
Zwraca: object
id string
path string
value number

Obiekty

Następujące obiekty opisują ładunki, które są przyjmowane lub zwracane. Więcej informacji na temat tego, kiedy te obiekty są w użyciu, można znaleźć w poszczególnych punktach końcowych.

CreateEntryRequest

Atrybuty

value number

Entry

Atrybuty

id string
path string
value number

IncrementEntryRequest

Atrybuty

amount number

ListEntriesResponse

Atrybuty

entries array<object>
nextPageToken string

UpdateEntryRequest

Atrybuty

value number