2023-02-28 19:10:56 +01:00
|
|
|
export const tableId = {
|
2022-02-17 20:55:37 +01:00
|
|
|
in: "path",
|
|
|
|
name: "tableId",
|
|
|
|
required: true,
|
2022-02-18 16:47:15 +01:00
|
|
|
description: "The ID of the table which this request is targeting.",
|
|
|
|
schema: {
|
|
|
|
type: "string",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2023-02-28 19:10:56 +01:00
|
|
|
export const rowId = {
|
2022-02-18 16:47:15 +01:00
|
|
|
in: "path",
|
|
|
|
name: "rowId",
|
|
|
|
required: true,
|
|
|
|
description: "The ID of the row which this request is targeting.",
|
2022-02-17 20:55:37 +01:00
|
|
|
schema: {
|
|
|
|
type: "string",
|
|
|
|
},
|
|
|
|
}
|
2022-02-18 18:44:08 +01:00
|
|
|
|
2023-02-28 19:10:56 +01:00
|
|
|
export const appId = {
|
2022-02-18 18:44:08 +01:00
|
|
|
in: "header",
|
2022-02-18 18:54:03 +01:00
|
|
|
name: "x-budibase-app-id",
|
2022-02-18 18:44:08 +01:00
|
|
|
required: true,
|
|
|
|
description: "The ID of the app which this request is targeting.",
|
|
|
|
schema: {
|
|
|
|
type: "string",
|
|
|
|
},
|
|
|
|
}
|
2022-02-21 20:04:13 +01:00
|
|
|
|
2023-02-28 19:10:56 +01:00
|
|
|
export const appIdUrl = {
|
2022-02-21 20:04:13 +01:00
|
|
|
in: "path",
|
|
|
|
name: "appId",
|
|
|
|
required: true,
|
|
|
|
description: "The ID of the app which this request is targeting.",
|
|
|
|
schema: {
|
|
|
|
type: "string",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2023-02-28 19:10:56 +01:00
|
|
|
export const queryId = {
|
2022-02-21 20:04:13 +01:00
|
|
|
in: "path",
|
|
|
|
name: "queryId",
|
|
|
|
required: true,
|
|
|
|
description: "The ID of the query which this request is targeting.",
|
|
|
|
schema: {
|
|
|
|
type: "string",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2023-02-28 19:10:56 +01:00
|
|
|
export const userId = {
|
2022-02-21 20:04:13 +01:00
|
|
|
in: "path",
|
|
|
|
name: "userId",
|
|
|
|
required: true,
|
|
|
|
description: "The ID of the user which this request is targeting.",
|
|
|
|
schema: {
|
|
|
|
type: "string",
|
|
|
|
},
|
|
|
|
}
|