Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions api-reference/v2/resources/changelog.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ title: Glide API Changelog
sidebarTitle: Changelog
---

### May 19, 2025

- When creating a table with the `POST /tables` endpoint, you can now specify one or more apps to link the new table to.

### April 1, 2025

- Clarified that the version supplied in the `If-Match` header is compared against the row version, not the table version, in the Update Row endpoint.
Expand Down
26 changes: 26 additions & 0 deletions openapi/swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,13 @@
"zcJWnyI8Tbam21V34K8MNA",
"93a19-cf7c-44437-b8c1-e9acbbb"
]
},
"linkedAppIDs": {
"type": "array",
"items": {
"type": "string"
},
"description": "An array of appIDs which were successfully linked."
}
},
"required": [
Expand Down Expand Up @@ -293,6 +300,18 @@
},
"required": false
},
{
"name": "appsToLink",
"in": "query",
"schema": {
"type": "array",
"items": {
"type": "string"
},
"description": "An array of app IDs to link the new table to."
},
"required": false
},
{
"name": "onSchemaError",
"in": "query",
Expand Down Expand Up @@ -502,6 +521,13 @@
"description": "A single reference to a [stash](/api-reference/v2/stashing) whose data should be used."
}
]
},
"appsToLink": {
"type": "array",
"items": {
"type": "string"
},
"description": "An array of app IDs to link the new table to."
}
},
"required": [
Expand Down