Skip to content

Commit 95b20b6

Browse files
committed
Update readme.md with the new routes
1 parent 3d416cf commit 95b20b6

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

README.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ Create a **Confluence Cloud API** credential with:
7575
| **Update Page** | `PUT /pages/{id}` | V2 | [📖 V2 API Docs](https://developer.atlassian.com/cloud/confluence/rest/v2/api-group-page/#api--pages-id-put) |
7676
| **Delete Page** | `DELETE /pages/{id}` | V2 | [📖 V2 API Docs](https://developer.atlassian.com/cloud/confluence/rest/v2/api-group-page/#api--pages-id-delete) |
7777
| **Get Pages In Space** | `GET /spaces/{id}/pages` | V2 | [📖 V2 API Docs](https://developer.atlassian.com/cloud/confluence/rest/v2/api-group-space/#api--spaces-id-pages-get) |
78+
| **Get Label Pages** | `GET /labels/{id}/pages` | V2 | [📖 V2 API Docs](https://developer.atlassian.com/cloud/confluence/rest/v2/api-group-page/#api--labels-id-pages-get) |
7879

7980
### 📄 **Template Operations**
8081

@@ -115,6 +116,19 @@ Create a **Confluence Cloud API** credential with:
115116
| **Delete Inline Comment** | `DELETE /inline-comments/{comment-id}` | V2 | [📖 V2 API Docs](https://developer.atlassian.com/cloud/confluence/rest/v2/intro/#api--inline-comments-comment-id-delete) |
116117
| **Get Inline Comment Children** | `GET /inline-comments/{id}/children` | V2 | [📖 V2 API Docs](https://developer.atlassian.com/cloud/confluence/rest/v2/intro/#api--inline-comments-id-children-get) |
117118

119+
### 📄 **Label Operations**
120+
121+
| Operation | Method | API Version | Documentation |
122+
|-----------|--------|-------------|---------------|
123+
| **Get Attachment Labels** | `GET /attachments/{id}/labels` | V2 | [📖 V2 API Docs](https://developer.atlassian.com/cloud/confluence/rest/v2/intro/#api--attachments-id-labels-get) |
124+
| **Get Blog Post Labels** | `GET /blogposts/{id}/labels` | V2 | [📖 V2 API Docs](https://developer.atlassian.com/cloud/confluence/rest/v2/intro/#api--blogposts-id-labels-get) |
125+
| **Get Custom Content Labels** | `GET /custom-content/{id}/labels` | V2 | [📖 V2 API Docs](https://developer.atlassian.com/cloud/confluence/rest/v2/intro/#api--custom-content-id-labels-get) |
126+
| **Get Labels** | `GET /labels` | V2 | [📖 V2 API Docs](https://developer.atlassian.com/cloud/confluence/rest/v2/intro/#api--labels-get) |
127+
| **Get Page Labels** | `GET /pages/{id}/labels` | V2 | [📖 V2 API Docs](https://developer.atlassian.com/cloud/confluence/rest/v2/api-group-page/#api--pages-id-labels-get) |
128+
| **Get Space Labels** | `GET /spaces/{id}/labels` | V2 | [📖 V2 API Docs](https://developer.atlassian.com/cloud/confluence/rest/v2/api-group-space/#api--spaces-id-labels-get) |
129+
| **Get Space Content Labels** | `GET /spaces/{id}/content/labels` | V2 | [📖 V2 API Docs](https://developer.atlassian.com/cloud/confluence/rest/v2/api-group-space/#api--spaces-id-content-labels-get) |
130+
| **Get Page Labels** | `GET /pages/{id}/labels` | V2 | [📖 V2 API Docs](https://developer.atlassian.com/cloud/confluence/rest/v2/api-group-page/#api--pages-id-labels-get) |
131+
118132

119133

120134
## 💡 Usage Examples
@@ -190,7 +204,9 @@ This node uses a sophisticated build system:
190204

191205
## 🤝 Contributing
192206

193-
Contributions are welcome! Please read our [Contributing Guide](CONTRIBUTING.md) for details.
207+
We welcome contributions! Fork the repository, make your changes, and submit a pull request. For new Confluence API endpoints, add them to `config/confluence-routes.json` and run `npm run dev` to generate operations.
208+
209+
**Found a bug or have a feature request?** Open an issue with clear details and steps to reproduce.
194210

195211
### Adding New Routes
196212

0 commit comments

Comments
 (0)