メインコンテンツへスキップ
GET
https://{host}/me/v1
/
factors
C#
using Auth0Auth0;
using System.Threading.Tasks;

namespace Usage;

public class Example
{
    public async Task Do() {
        var client = new Auth0Auth0Client(
            token: "<token>"
        );

        await client.Factors.ListAsync();
    }

}
{
  "factors": [
    {
      "type": "password",
      "usage": [
        "primary"
      ]
    }
  ]
}

承認

Authorization
string
header
必須

Bearer and DPoP tokens are supported depending on the API configuration

レスポンス

Successfully retrieved enabled factors

factors
object[]
必須