Connectors
...
Actions
Retrieve Authentication Methods
5 min
description retrieve a user's authentication methods in microsoft graph api using their mail id endpoint url /v1 0/users/{{mailid}}/authentication/methods method get inputs path parameters (object) – required mailid (string) – required the account associated with the email output example \[ { "status code" 200, "response headers" { "client request id" "30bcb75d a62f 85ad 90e1 d7d1978e9ca3", "content type" "application/json;odata metadata=minimal;odata streaming=true;ieee754compatible=false;charset=utf 8", "request id" "2a6161df 44ca 494f 935d 20e3534d3745" }, "reason" "ok", "json body" { "@odata context" "https //graph microsoft com/v1 0/$metadata#users('integrations%40swimlaneintegrations onmicrosoft com')/authentication/methods", "@microsoft graph tips" "use $select to choose only the properties your app needs, as this can lead to performance improvements for example get users('\<key>')/authentication/methods?$select=id", "value" \[ { "@odata type" "#microsoft graph passwordauthenticationmethod", "id" "28c10230 6103 485e b985 444c60001490", "password" null, "createddatetime" "2021 12 15t01 31 09z" }, { "@odata type" "#microsoft graph softwareoathauthenticationmethod", "id" "c03db085 34e7 47bc b7d6 b54069b6042f", "secretkey" null } ] } } ] output parameters status code (number) reason (string) json body (object) @odata context (string) @microsoft graph tips (string) value (array) @odata type (string) id (string) password (object) createddatetime (string) secretkey (object) response headers header type client request id string content type string request id string