Enumerar overridesPagesList overridesPages
Espacio de nombres: microsoft.graphNamespace: microsoft.graph
Obtiene los recursos userFlowLanguagePage de la propiedad de navegación overridesPages.Get the userFlowLanguagePage resources from the overridesPages navigation property. Estas páginas se usan para personalizar los valores que se muestran al usuario durante un recorrido de usuario en un flujo de usuario.These pages are used to customize the values shown to the user during a user journey in a user flow.
PermissionsPermissions
Se requiere uno de los siguientes permisos para llamar a esta API. Para obtener más información, incluido cómo elegir permisos, vea Permisos.One of the following permissions is required to call this API. To learn more, including how to choose permissions, see Permissions.
Tipo de permisoPermission type | Permisos (de menos a más privilegiados)Permissions (from least to most privileged) |
---|---|
Delegado (cuenta profesional o educativa)Delegated (work or school account) | IdentityUserFlow.Read.All, IdentityUserFlow.ReadWrite.AllIdentityUserFlow.Read.All, IdentityUserFlow.ReadWrite.All |
Delegado (cuenta personal de Microsoft)Delegated (personal Microsoft account) | No admitida.Not supported. |
AplicaciónApplication | IdentityUserFlow.Read.All, IdentityUserFlow.ReadWrite.AllIdentityUserFlow.Read.All, IdentityUserFlow.ReadWrite.All |
La cuenta de trabajo o escuela debe pertenecer a uno de los siguientes roles:The work or school account needs to belong to one of the following roles:
- Administrador globalGlobal administrator
- Administrador de flujo de usuario de identidad externaExternal Identity User Flow administrator
Solicitud HTTPHTTP request
GET /identity/b2cUserFlows/{id}/languages/{id}/overridesPages
GET /identity/b2xUserFlows/{id}/languages/{id}/overridesPages
Encabezados de solicitudRequest headers
NombreName | DescripciónDescription |
---|---|
AuthorizationAuthorization | {token} de portador. Obligatorio.Bearer {token}. Required. |
Cuerpo de la solicitudRequest body
No proporcione un cuerpo de solicitud para este método.Do not supply a request body for this method.
RespuestaResponse
Si se realiza correctamente, este método devuelve un código de respuesta y una colección de 200 OK
objetos userFlowLanguagePage en el cuerpo de la respuesta.If successful, this method returns a 200 OK
response code and a collection of userFlowLanguagePage objects in the response body.
EjemplosExamples
SolicitudRequest
Aquí tiene un ejemplo de la solicitud.The following is an example of the request.
GET https://graph.microsoft.com/beta/b2cUserFlows/B2C_1_Customer/languages/en/overridesPages
RespuestaResponse
Este es un ejemplo de la respuesta.The following is an example of the response.
Nota: Se puede acortar el objeto de respuesta que se muestra aquí para mejorar la legibilidad.Note: The response object shown here might be shortened for readability.
HTTP/1.1 200 OK
Content-Type: application/json
{
"value": [
{
"id": "idpselections"
},
{
"id": "phonefactor"
}
]
}