POST WebsiteUser/HasPassword

Checks if website users has passwords asynchronous.

Request Information

Body Parameters

Collection of string - The email address list.

Request body formats
Sample:
[
  "sample string 1",
  "sample string 2"
]
Sample:
[0]=foo&[1]=bar

Response Information

Collection of HasPasswordResult -

Response body formats
Sample:
[
  {
    "EmailAddress": "sample string 1",
    "HasPassword": true
  },
  {
    "EmailAddress": "sample string 1",
    "HasPassword": true
  }
]