Infos on CMDB related REST endpoint /api/now/cimodel/cmdbciclasses
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-13-2023 10:06 AM
Hi all,
Looking into CMDB workspace I come across the endpoint /api/now/cimodel/cmdbciclasses, which, obviously, returns a list of all CI classes.
Can anyone point me to information or documentation on this endpoint?
Thanks!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-13-2023 12:02 PM
The /api/now/cimodel/cmdbciclasses endpoint in ServiceNow's Common Service Data Model (CSDM) API is used to retrieve information about Configuration Item (CI) classes.
This API endpoint allows you to:
List CI Classes: You can use a GET request to retrieve a list of all CI classes defined in your ServiceNow instance's Common Service Data Model (CSDM).
Create CI Classes: You can use a POST request to create new CI classes if you have the necessary permissions and the CSDM is not read-only.
Update CI Classes: You can use a PUT request to update the properties and definitions of existing CI classes.
Delete CI Classes: You can use a DELETE request to delete CI classes.
Don't forget to mark my answer as Correct & Helpful, if applicable.
Krishna Sharma
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-14-2023 12:13 AM
Thanks @Community Alums,
would you please give me a link to where I can find the information you posted? I can't find it in product documentation, and it's not in REST Explorer.