Skip to content

Commit cbc6792

Browse files
Documentation edits made through Mintlify web editor
1 parent 8ed92eb commit cbc6792

File tree

6 files changed

+18
-2
lines changed

6 files changed

+18
-2
lines changed

api-reference/v2/general/limits.mdx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,6 @@ Even when using stashing, there are limits to the number of rows you can work wi
1616
|---------------------------------------------------------------|------------|
1717
| [Create Table](/api-reference/v2/tables/post-tables) | 8m |
1818
| [Overwrite Table](/api-reference/v2/tables/put-tables) | 8m |
19-
| [Add Rows to Table](/api-reference/v2/tables/post-table-rows) | 250k |
19+
| [Add Rows to Table](/api-reference/v2/tables/post-table-rows) | 250k |
20+
21+
When adding rows to a table, the returned row IDs are guaranteed to be in the same order as the input rows provided in the request.

api-reference/v2/resources/changelog.mdx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ title: Glide API Changelog
33
sidebarTitle: Changelog
44
---
55

6+
### January 15, 2025
7+
8+
- Clarified that for endpoints returning row IDs, the IDs are returned in the same order as the input rows.
9+
610
### November 26, 2024
711

812
- Added a warning that using the `PUT /tables` endpoint to overwrite a table will clear user-specific columns.
@@ -83,3 +87,5 @@ sidebarTitle: Changelog
8387
- Support for creating, overwriting tables
8488
- Support for adding rows to tables
8589
- Support for stashing large datasets
90+
</fileContent>
91+
</invoke>

api-reference/v2/stashing/introduction.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ The following endpoints support the use of a stash. Please see the specific endp
4444

4545
* [Create Table](/api-reference/v2/tables/post-tables)
4646
* [Overwrite Table](/api-reference/v2/tables/put-tables)
47-
* [Add Rows to Table](/api-reference/v2/tables/post-table-rows)
47+
* [Add Rows to Table](/api-reference/v2/tables/post-table-rows) - When using this endpoint, the row IDs in the response are returned in the same order as the input rows in your request.
4848

4949
## Use Cases
5050

api-reference/v2/tables/post-table-rows.mdx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,3 +42,5 @@ Row data may be passed in JSON, CSV, or TSV format.
4242
```
4343
</Accordion>
4444
</AccordionGroup>
45+
46+
The returned row IDs will be in the same order as the input rows provided in the request.

api-reference/v2/tables/post-tables.mdx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ When using a CSV or TSV request body, the name of the table must be passed as a
2727
}
2828
```
2929

30+
The response will include row IDs for all created rows, returned in the same order as the input rows.
31+
3032
However, this is only appropriate for relatively small initial datasets (around a few hundred rows or less, depending on schema complexity). If you need to work with a larger dataset you should utilize stashing.
3133
</Accordion>
3234
<Accordion title="Create Table from Stash">

api-reference/v2/tutorials/bulk-import.mdx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,8 @@ To create a table with the data of the stash ID `20240501-import` you can use th
8989
}
9090
```
9191

92+
The endpoint will return a list of row IDs in the same order as the rows in your stashed data, preserving the order defined by the serial numbers in your stash uploads.
93+
9294
### Add Rows to Table
9395

9496
To add data to an existing table you can use the [add rows to table](/api-reference/v2/tables/post-table-rows) endpoint with the `stashID` reference of `20240501-import` instead of the actual row values.
@@ -99,6 +101,8 @@ To add data to an existing table you can use the [add rows to table](/api-refere
99101
}
100102
```
101103

104+
The endpoint will return a list of row IDs in the same order as the rows in your stashed data, preserving the order defined by the serial numbers in your stash uploads.
105+
102106
### Overwrite Table
103107

104108
To reset an existing table's data you can use the [overwrite table](/api-reference/v2/tables/put-tables) endpoint with the `stashID` reference of `20240501-import` instead of the actual row values.

0 commit comments

Comments
 (0)