Skip to content

Commit 58ffaa3

Browse files
committed
docs: cleanup
Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com>
1 parent 1e2de3f commit 58ffaa3

File tree

1 file changed

+19
-20
lines changed
  • content/docs/developer-resources/rest-apis

1 file changed

+19
-20
lines changed

content/docs/developer-resources/rest-apis/index.mdx

Lines changed: 19 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -25,48 +25,47 @@ Before making API calls, you'll need to identify and copy the relevant IDs requi
2525

2626
### Workspace ID
2727

28-
The Workspace ID identifies your entire workspace and is used for workspace-level API operations.
28+
**Workspace ID** is an alphanumeric identifier prefixed with `w` (representing *workspace*) that uniquely identifies your workspace in NocoDB. It appears in the URL bar when viewing any base within the workspace.
2929

30-
Workspace ID is the alphanumeric string with prefix `w` (stands for workspace) that appears in the URL when viewing any base within your workspace. It can also be found in the Workspace context menu (click on workspace icon in minibar). Click on the ID to copy it to your clipboard.
30+
You can also find it in the workspace context menu (accessible by clicking the workspace icon in the minibar). Click the ID to copy it to your clipboard.
3131

3232
![Workspace ID](/img/v2/developer/workspace-id-1.png)
3333

34-
Workspace ID can also be retrieved from Workspace settings.
34+
Workspace ID can also be retrieved from Workspace settings page.
3535

3636
![Workspace ID](/img/v2/developer/workspace-id-2.png)
3737

3838
### Base ID
3939

40-
The Base ID is required for meta APIs and administrative operations. It identifies a specific database / base within your workspace.
40+
**Base ID** is required for metadata APIs and administrative operations. It uniquely identifies a specific database (or base) within your workspace.
4141

42-
Base ID is the alphanumeric string with prefix `p` (stands for project) that appears in the URL when viewing any table or base-level settings. It can also be found in the Base context menu (chevron next to base name) in the left sidebar. Click on the ID to copy it to your clipboard.
42+
The Base ID is an alphanumeric identifier prefixed with `p` (representing *project*), visible in the URL when accessing any table or base-level settings. You can also find it in the base context menu (chevron next to the base name) in the left sidebar, where you can click the ID to copy it to your clipboard.
4343

4444
![Base ID](/img/v2/developer/base-id.png)
4545

4646
### Table ID
4747

48-
The Table ID is the most frequently used identifier and is required for all data API calls. It uniquely identifies a specific table within your base.
48+
**Table ID** is the most commonly used identifier and is required for all data API calls. It uniquely identifies a specific table within your base.
4949

50-
Table ID is the alphanumeric string with prefix `m` (stands for model) that appears after base ID in the URL when viewing a table. It can also be found in Table context menu (three dots next to table name) in the left sidebar. Click on the ID to copy it to your clipboard.
50+
The Table ID is an alphanumeric string prefixed with `m` (representing *model*), visible in the URL immediately after the Base ID when viewing a table. You can also find it in the table context menu (three dots next to the table name) in the left sidebar. Click the ID to copy it to your clipboard.
5151

5252
![Table ID](/img/v2/developer/table-id.png)
5353

5454
### View ID
55-
The View ID is used for view-specific API operations, such as retrieving records from a particular view. It uniquely identifies a specific view within a table.
55+
**View ID** is used for view-specific API operations, such as fetching records from a particular view. It uniquely identifies a specific view within a table.
5656

57-
View ID is the alphanumeric string with prefix `v` (stands for view) that appears in the URL when viewing a specific view. It can also be found in the View context menu (three dots next to view name) in the left sidebar. Click on the ID to copy it to your clipboard.
57+
The View ID is an alphanumeric string prefixed with `v` (representing *view*), visible in the URL when a specific view is open. You can also find it in the view context menu (three dots next to the view name) in the left sidebar. Click the ID to copy it to your clipboard.
5858

5959
![View ID](/img/v2/developer/view-id-1.png)
6060

61-
View ID can also be retrieved from view toolbar > more actions (...) menu
61+
View ID can also be retrieved from view toolbar > more actions (3 dots) menu
6262

6363
![View ID](/img/v2/developer/view-id-2.png)
6464

65-
6665
### Field ID
67-
The Field ID is used for field-specific API operations, such as updating field properties. It uniquely identifies a specific column within a table.
66+
**Field ID** is used for field-specific API operations, such as updating field properties. It uniquely identifies a specific column within a table.
6867

69-
Field ID is the alphanumeric string with prefix `c` (stands for column) that appears in the URL when viewing or editing a specific field's settings. It can also be found in the field context menu (chevron next to field name) in field header bar. Click on the ID to copy it to your clipboard.
68+
The Field ID is an alphanumeric string prefixed with `c` (representing *column*), visible in the URL when viewing or editing a fields settings. You can also find it in the field context menu (chevron next to the field name) in the field header bar. Click the ID to copy it to your clipboard.
7069

7170
![Field ID](/img/v2/developer/field-id-1.png)
7271

@@ -76,33 +75,33 @@ Field ID can also be retrieved from `Details` > `Fields` editor
7675

7776

7877
### Record ID
79-
The Record ID is used for record-specific API operations, such as retrieving or updating a particular record. It uniquely identifies a specific row within a table.
78+
**Record ID** is used for record-specific API operations, such as retrieving or updating an individual record. It uniquely identifies a specific row within a table.
8079

81-
Record ID (by default) is a numeric value starting from 1. You can enable "ID" field (corresponds to Record ID) from "Fields" menu in the toolbar by clicking on Show System fields.
80+
By default, the Record ID is a numeric value starting from 1. You can display the **ID** field (which corresponds to the Record ID) by opening the **Fields** menu in the toolbar and enabling **Show System Fields**.
8281

8382
![Record ID](/img/v2/developer/record-id-1.png)
8483

8584
You can also find it in the URL when viewing a specific record (expanded record view).
8685

8786
![Record ID](/img/v2/developer/record-id-2.png)
8887

89-
You can also retrieve Record ID when constructing formulas using the formula editor by selecting "ID" from the list of available fields OR by using the `RECORD_ID()` function.
88+
You can also access the Record ID in formulas by selecting **ID** from the list of available fields in the formula editor or by using the `RECORD_ID()` function.
9089

9190
![Record ID](/img/v2/developer/record-id-3.png)
9291

9392
### User ID
94-
The User ID is used for user-specific API operations, such as retrieving user details. It uniquely identifies a specific user within your workspace / organization.
93+
**User ID** is used for user-specific API operations, such as retrieving user details. It uniquely identifies a specific user within your workspace or organization.
9594

96-
User ID is the alphanumeric string with prefix `u` (stands for user). You can retrieve it from either workspace members page or base members page by clicking on the three dots menu associated with user's name. Click on the ID to copy it to your clipboard.
95+
The User ID is an alphanumeric string prefixed with `u` (representing *user*). You can find it on either the **Workspace Members** page or the **Base Members** page by clicking the three dots menu next to a users name. Click the ID to copy it to your clipboard.
9796

9897
![User ID](/img/v2/developer/user-id-1.png)
9998

10099
![User ID](/img/v2/developer/user-id-2.png)
101100

102101
### Data Source ID
103-
For External Data Sources connected to NocoDB (like Postgres / MySQL), the Data Source ID is additionally required to perform data API operations.
102+
For external data sources connected to NocoDB (such as Postgres or MySQL), the **Data Source ID** is additionally required to perform data API operations.
104103

105-
Data Source ID is the alphanumeric string. You can retrieve it from the context menu by clicking on the three dots next to data source name in the left sidebar. Click on the ID to copy it to your clipboard.
104+
The Data Source ID is an alphanumeric string that uniquely identifies the connected data source. You can find it in the context menu by clicking the three dots next to the data source name in the left sidebar. Click the ID to copy it to your clipboard.
106105

107106
![Data Source ID](/img/v2/developer/datasource-id-1.png)
108107

0 commit comments

Comments
 (0)