Get all SDTs for a Device Group
Last updated on 14 September, 2020With LogicMonitor’s REST API you can programmatically get the SDTs for the device groups in your account.
Note: As with all of our API calls, authentication is required.
Join fellow LogicMonitor users at the Elevate Community Conference and get hands-on with our latest product innovations.
Register NowGet real-time insights and automation for comprehensive, seamless monitoring with agentless architecture.
Platform OverviewWhether you work in MSP, Enterprise IT or somewhere in between, the solution is clear.
Solutions OverviewExplore our blogs, guides, case studies, eBooks, and more actionable insights to enhance your IT monitoring and observability.
View ResourcesRead through our documentation, check out our latest release notes, or submit a ticket to our world-class customer service team.
View ResourcesCome join our live training webinar every other Wednesday at 11am PST and hear LogicMonitor experts explain best practices and answer common questions. We understand these are uncertain times, and we are here to help!
Sign up hereWith LogicMonitor’s REST API you can programmatically get the SDTs for the device groups in your account.
Note: As with all of our API calls, authentication is required.
HTTP Method:GET
URI: /device/groups/{id}/sdts
Request Parameters: By default, a list of 50 SDT properties will be returned for each result. You can include sort, filter, fields, size and offset parameters in your request to control what data is included in the response and how it is formatted.
Property |
Syntax |
Description |
Example URI |
sort | sort={+ or -}property | Sorts the response by the property specified in either increasing (+) or decreasing (-) order | /device/groups/76/sdts?sort=-sdtType |
filter | filter=property:value | Filters the response to include only the results that have the specified value for the specified property | /device/groups/12/sdts?filter=deviceDisplayName~prod |
fields | fields={list of properties separated by commas} | Filters the response to only include the following fields for each object | /device/groups/32/sdts?fields=deviceDisplayName,id,sdtType |
size | size=integer | The number of results to display | /device/groups/54/sdts?size=5 |
offset | offset=integer | The number of results to offset the displayed results by | /device/groups/id/sdts?offset=2 |