How to get more information about a server using sys_id
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-16-2023 05:12 AM
Hi,
I got the sys_id from the below API call, could someone help me with API call to get more information about the server using the sys_id
https://mytest.service-now.com/api/now/cmdb/instance/cmdb_ci_server

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-16-2023 11:22 AM
Hi @Chandramohan27 If you have the sys_id of the record then you can use Table API to get more information from the record. In this case you can use the below API to get more details from cmdb_ci_server record
In the API query you can include the comma separated field names for the attributes you are interested in. The example I provided will give you the name and serial number of the record. If you do not provide "sysparm_fields" then it will list out all the attributes for that record.
Hope this helps. Mark it as correct if this resolves your issue.