Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试sys_id通过username使用SNOW REST API. SNOW API但是我在文档中找不到这样做的方法。
sys_id
username
SNOW REST API
SNOW API
是否不可能这样做或任何其他替代方式?
是的,这是一个简单的 GET 调用。sys_id 不会在默认字段上返回,但如果您明确请求它会返回:
https://[your instance].service-now.com/api/now/table/sys_user?sysparm_query=user_name%3D[your username]&sysparm_fields=sys_id&sysparm_limit=1
REST api explorer 对于构建和测试这样的查询非常方便。您可以通过搜索导航器找到它。