Skip to content

Commit 49f60f1

Browse files
authored
Merge branch 'Roblox:main' into main
2 parents 9b6bd81 + 07c876c commit 49f60f1

File tree

6 files changed

+75
-7
lines changed

6 files changed

+75
-7
lines changed

content/common/navigation/cloud/reference.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ navigation:
2020
path: /cloud/reference/openapi
2121
- title: Scopes
2222
path: /cloud/reference/scopes
23+
- title: Risk levels
24+
path: /cloud/reference/risk-levels
2325
- heading: Authentication
2426
- title: API keys
2527
path: /cloud/auth/api-keys
Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
---
2+
title: Risk levels
3+
description: Explains the risk level classifications for Open Cloud API endpoints and their behavior in the "try it out" feature.
4+
---
5+
6+
Risk levels classify Open Cloud endpoints based on the potential impact of their operations. These classifications apply to the OAuth 2.0 authorization flow and the "try it out" feature here in the API documentation.
7+
8+
Risk levels help protect your data and account when testing API endpoints in the documentation. Always review an endpoint's functionality and potential impact before testing, particularly for medium and high risk operations that can modify your data.
9+
10+
## Try it out risk levels
11+
12+
The "try it out" feature uses four risk levels, which control the warnings and restrictions that you encounter when testing endpoints directly from the documentation.
13+
14+
<table>
15+
<thead>
16+
<tr>
17+
<th>Risk level</th>
18+
<th>"Try it out" allowed</th>
19+
<th>Warning dialog</th>
20+
<th>Warning banner</th>
21+
<th>Cookie attachment</th>
22+
</tr>
23+
</thead>
24+
<tbody>
25+
<tr>
26+
<td>Low</td>
27+
<td>&#9989;</td>
28+
<td>No</td>
29+
<td>Yes</td>
30+
<td>Yes</td>
31+
</tr>
32+
<tr>
33+
<td>Medium</td>
34+
<td>&#9989;</td>
35+
<td>Yes (per endpoint, per session)</td>
36+
<td>Yes</td>
37+
<td>Yes</td>
38+
</tr>
39+
<tr>
40+
<td>High</td>
41+
<td>&#9989;</td>
42+
<td>Yes (per endpoint, per session)</td>
43+
<td>Yes</td>
44+
<td>No</td>
45+
</tr>
46+
<tr>
47+
<td>Critical</td>
48+
<td>&#10060;</td>
49+
<td>N/A</td>
50+
<td>N/A</td>
51+
<td>N/A</td>
52+
</tr>
53+
</tbody>
54+
</table>
55+
56+
- **Low risk** endpoints primarily retrieve publicly available information and have minimal impact on your data or experiences. These endpoints show a simple informational banner when using "try it out."
57+
58+
- **Medium risk** endpoints can create, update, or access private information. Most changes you make from these endpoints can be reversed using other available endpoints. These endpoints have the following "try it out" safety measures:
59+
60+
- They display a confirmation dialog before you send a request. This dialog appears once per endpoint per browser session.
61+
- They show a warning banner to remind you of the risk level.
62+
63+
- **High risk** endpoints can modify or delete private information in ways that may be difficult or impossible to reverse. This category includes most DELETE operations and other potentially destructive actions. In addition to the confirmation dialog and warning banner from medium risk endpoints, cookie authentication is not supported for these endpoints.
64+
65+
- **Critical risk** endpoints access or modify highly sensitive data that could compromise account security or privacy. "Try it out" is disabled for these endpoints.

content/en-us/creator-programs/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ Roblox offers various programs for creators on the platform to provide additiona
5959
<h4>Community Safety Council</h4>
6060
<figure>
6161
<Chip
62-
color="success"
63-
label="Status: Open"
62+
color="error"
63+
label="Status: Closed"
6464
size="medium"
6565
variant="filled"/>
6666
</figure>

content/en-us/creator-programs/safety-council.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,4 @@ Out of respect for the privacy of Council members, we do not intend to announce
4646

4747
## How to Apply
4848

49-
Fill out the application in the link below. Application periods open up periodically throughout the
50-
year.
51-
52-
<Button href="https://survey.roblox.com/jfe/form/SV_6AkAYuMlaVy8jHg" size='large' variant='contained' style={{width:200}}>Apply</Button>
49+
Applications are currently closed. Check back periodically for updates on when applications reopen.

content/en-us/production/publishing/publish-experiences-and-places.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ If you don't restart servers, players will transition to the new version of the
335335
To restart servers for release updates:
336336

337337
1. Go to [Creations](https://create.roblox.com/dashboard/creations) and select the experience you want to restart servers for.
338-
2. Go to **Services** > **Server Management**.
338+
2. Go to **Configure** > **Server Management**.
339339
3. Select the places you want to restart.
340340
4. Click **Restart servers**.
341341
5. In the **Confirm Server Restart** dialog:

content/en-us/reference/engine/classes/TextGenerator.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,23 +147,27 @@ methods:
147147
<th>Key Name</th>
148148
<th>Data Type</th>
149149
<th>Description</th>
150+
<th>Required</th>
150151
</tr>
151152
</thead>
152153
<tbody>
153154
<tr>
154155
<td><code>UserPrompt</code></td>
155156
<td>string</td>
156157
<td>Optional prompt from the user that initiates the chat. This could be a question, statement, or command that the user wants the model to respond to.</td>
158+
<td>No</td>
157159
</tr>
158160
<tr>
159161
<td><code>ContextToken</code></td>
160162
<td>string</td>
161163
<td>Prompt history context token containing a summarization of the previous prompt requests and responses in a conversation up to the current request. If no token is provided, a new token is generated and returned in the response. Providing a previously generated context token restores the conversation state into the current request.</td>
164+
<td>No</td>
162165
</tr>
163166
<tr>
164167
<td><code>MaxTokens</code></td>
165168
<td>number</td>
166169
<td>The maximum number of tokens in the response generated by the model, expected to be an integer whose value is at least <code>1</code>. This limits the length of the response, preventing overly long or incomplete answers. Non-integral numbers will be rounded to the nearest integer.</td>
170+
<td>No</td>
167171
</tr>
168172
</tbody>
169173
</table>

0 commit comments

Comments
 (0)