CreatorStoreProduct

คุณลักษณะ

pathstring
basePriceobject
purchasePriceobject
publishedboolean
restrictionsarray<enum>
เอาต์พุตเท่านั้น
purchasableboolean
เอาต์พุตเท่านั้น

หนึ่งในรายการต่อไปนี้สำหรับseller:

userSellerstring
เอาต์พุตเท่านั้น
groupSellerstring
เอาต์พุตเท่านั้น

หนึ่งในรายการต่อไปนี้สำหรับproductType:

modelAssetIdstring
ไม่สามารถเปลี่ยนแปลงได้
pluginAssetIdstring
ไม่สามารถเปลี่ยนแปลงได้
audioAssetIdstring
ไม่สามารถเปลี่ยนแปลงได้
decalAssetIdstring
ไม่สามารถเปลี่ยนแปลงได้
meshPartAssetIdstring
ไม่สามารถเปลี่ยนแปลงได้
videoAssetIdstring
ไม่สามารถเปลี่ยนแปลงได้
fontFamilyAssetIdstring
ไม่สามารถเปลี่ยนแปลงได้
URL หลัก

https://apis.roblox.com
แหล่งข้อมูล CreatorStoreProduct

{
"path": "creator-store-products/ProductNamespace-ProductType-123",
"basePrice": {
"currencyCode": "string",
"quantity": {
"significand": "integer",
"exponent": "integer"
}
},
"purchasePrice": {
"currencyCode": "string",
"quantity": {
"significand": "integer",
"exponent": "integer"
}
},
"published": true,
"restrictions": [
"RESTRICTION_UNSPECIFIED"
],
"purchasable": true,
"userSeller": "string",
"modelAssetId": "string"
}

CreatorStoreProduct

Create Creator Store Product
เวอร์ชัน Beta

POST /cloud/v2/creator-store-products
ขอบเขต
creator-store-product:write
คำขอเนื้อหาคำขอCreatorStoreProduct
การตอบกลับCreatorStoreProduct
POST /cloud/v2/creator-store-products

curl -L -X POST 'https://apis.roblox.com/cloud/v2/creator-store-products' \
-H 'x-api-key: {your-api-key}' \
-H 'Content-Type: application/json' \
--data '{
"basePrice": {
"currencyCode": "string",
"quantity": {
"significand": "integer",
"exponent": "integer"
}
},
"purchasePrice": {
"currencyCode": "string",
"quantity": {
"significand": "integer",
"exponent": "integer"
}
},
"published": true,
"modelAssetId": "string"
}'
การตอบกลับ

{
"path": "creator-store-products/ProductNamespace-ProductType-123",
"basePrice": {
"currencyCode": "string",
"quantity": {
"significand": "integer",
"exponent": "integer"
}
},
"purchasePrice": {
"currencyCode": "string",
"quantity": {
"significand": "integer",
"exponent": "integer"
}
},
"published": true,
"restrictions": [
"RESTRICTION_UNSPECIFIED"
],
"purchasable": true,
"userSeller": "string",
"modelAssetId": "string"
}

CreatorStoreProduct

Get Creator Store Product
เวอร์ชัน Beta

GET /cloud/v2/creator-store-products/{creator_store_product_id}
ขอบเขต
creator-store-product:read
คำขอพารามิเตอร์เส้นทาง
creator_store_product_idstring
จำเป็นต้องมี
การตอบกลับCreatorStoreProduct
GET /cloud/v2/creator-store-products/{creator_store_product_id}

curl -L -X GET 'https://apis.roblox.com/cloud/v2/creator-store-products/{creator_store_product_id}' \
-H 'x-api-key: {your-api-key}'
การตอบกลับ

{
"path": "creator-store-products/ProductNamespace-ProductType-123",
"basePrice": {
"currencyCode": "string",
"quantity": {
"significand": "integer",
"exponent": "integer"
}
},
"purchasePrice": {
"currencyCode": "string",
"quantity": {
"significand": "integer",
"exponent": "integer"
}
},
"published": true,
"restrictions": [
"RESTRICTION_UNSPECIFIED"
],
"purchasable": true,
"userSeller": "string",
"modelAssetId": "string"
}

CreatorStoreProduct

Update Creator Store Product
เวอร์ชัน Beta

PATCH /cloud/v2/creator-store-products/{creator_store_product_id}
ขอบเขต
creator-store-product:write
คำขอพารามิเตอร์เส้นทาง
creator_store_product_idstring
จำเป็นต้องมี
พารามิเตอร์คิวรี
updateMaskstring
allowMissingboolean
เนื้อหาคำขอCreatorStoreProduct
การตอบกลับCreatorStoreProduct
PATCH /cloud/v2/creator-store-products/{creator_store_product_id}

curl -L -X PATCH 'https://apis.roblox.com/cloud/v2/creator-store-products/{creator_store_product_id}?updateMask={string}&allowMissing={boolean}' \
-H 'x-api-key: {your-api-key}' \
-H 'Content-Type: application/json' \
--data '{
"basePrice": {
"currencyCode": "string",
"quantity": {
"significand": "integer",
"exponent": "integer"
}
},
"purchasePrice": {
"currencyCode": "string",
"quantity": {
"significand": "integer",
"exponent": "integer"
}
},
"published": true
}'
การตอบกลับ

{
"path": "creator-store-products/ProductNamespace-ProductType-123",
"basePrice": {
"currencyCode": "string",
"quantity": {
"significand": "integer",
"exponent": "integer"
}
},
"purchasePrice": {
"currencyCode": "string",
"quantity": {
"significand": "integer",
"exponent": "integer"
}
},
"published": true,
"restrictions": [
"RESTRICTION_UNSPECIFIED"
],
"purchasable": true,
"userSeller": "string",
"modelAssetId": "string"
}