identityUserFlowAttributeAssignment: getOrderidentityUserFlowAttributeAssignment: getOrder
命名空间:microsoft.graphNamespace: microsoft.graph
获取在用户流中收集的 identityUserFlowAttributeAssignments 的顺序。Get the order of identityUserFlowAttributeAssignments being collected within a user flow.
权限Permissions
要调用此 API,需要以下权限之一。要了解详细信息,包括如何选择权限的信息,请参阅权限。One of the following permissions is required to call this API. To learn more, including how to choose permissions, see Permissions.
权限类型Permission type | 权限(从最低特权到最高特权)Permissions (from least to most privileged) |
---|---|
委派(工作或学校帐户)Delegated (work or school account) | IdentityUserFlow.Read.All、IdentityUserFlow.ReadWrite.AllIdentityUserFlow.Read.All, IdentityUserFlow.ReadWrite.All |
委派(个人 Microsoft 帐户)Delegated (personal Microsoft account) | 不支持Not supported |
ApplicationApplication | IdentityUserFlow.Read.All、IdentityUserFlow.ReadWrite.AllIdentityUserFlow.Read.All, IdentityUserFlow.ReadWrite.All |
HTTP 请求HTTP request
GET /identity/b2cUserFlows/{b2cIdentityUserFlowId}/userAttributeAssignments/getOrder
GET /identity/b2xUserFlows/{b2xIdentityUserFlowId}/userAttributeAssignments/getOrder
请求标头Request headers
名称Name | 说明Description |
---|---|
AuthorizationAuthorization | Bearer {token}。必需。Bearer {token}. Required. |
函数参数Function parameters
请勿提供此方法的请求正文。Do not supply a request body for this method.
响应Response
如果成功,此函数在响应 200 OK
正文中返回响应代码和assignmentOrder。If successful, this function returns a 200 OK
response code and a assignmentOrder in the response body.
示例Examples
请求Request
GET https://graph.microsoft.com/beta/identity/b2cUserFlows/{id}/userAttributeAssignments/getOrder
响应Response
注意: 为了提高可读性,可能缩短了此处显示的响应对象。Note: The response object shown here might be shortened for readability.
HTTP/1.1 200 OK
Content-Type: application/json
{
"@odata.context": "https://graph.microsoft.com/beta$metadata#microsoft.graph.assignmentOrder",
"order": [
"extension_GUID_ShoeSize",
"City"
]
}