我正在尝试使用MS Dynamics365 CRM中的WEB API根据用户获取表单及其字段。
使用用户ID,我们可以尝试通过以下方式获取角色ID:
https://xxxxx/api/data/v9.1/systemuserrolescollection?$select=roleid&$filter=(systemuserid eq user_id)
从上述API中,我们可以获取角色ID,该ID用于通过以下方式获取角色详细信息
https://vonageholdings.crm.dynamics.com/api/data/v9.0/roles?$select=name&$filter=(roleid eq role_id)
我尝试使用systemforms
https://xxxx/api/data/v9.0/systemforms(form_id)
来获取它,它返回包括字段(XML)在内的完整表单详细信息。
现在我想在json中获取相应的表单字段。请帮助我们获取此字段。