| GET | /password-recovery |
|---|
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| PublicKey | query | string | No | |
| Token | query | string | No |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| PublicKey | form | string | No | |
| Token | form | string | No | |
| Users | form | Users | No | |
| LoginDesign | form | LoginDesign | No |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| Title | form | string | No |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| Id | form | int | No | |
| FirstName | form | string | No | |
| LastName | form | string | No | |
| IsEnabled | form | bool | No | |
| RecordStatusId | form | int | No | |
| TwoFactorEnabled | form | bool | No | |
| PhoneNumberConfirmed | form | bool | No | |
| PhoneNumber | form | string | No | |
| SecurityStamp | form | string | No | |
| EmailConfirmed | form | bool | No | |
| NormalizedEmail | form | string | No | |
| form | string | No | ||
| NormalizedUserName | form | string | No | |
| Username | form | string | No | |
| LockoutEnabled | form | bool | No | |
| AccessFailedCount | form | int | No | |
| ApplicationLanguagesId | form | int? | No | |
| TimezonesId | form | int? | No |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| logo | form | string | No | |
| bgColor | form | string | No | |
| textColor | form | string | No | |
| mainColor | form | string | No |
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
GET /password-recovery HTTP/1.1 Host: auth.mepis.si Accept: text/jsv
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length
{
publicKey: String,
token: String,
users:
{
id: 0,
firstName: String,
lastName: String,
isEnabled: False,
recordStatusId: 0,
twoFactorEnabled: False,
phoneNumberConfirmed: False,
phoneNumber: String,
securityStamp: String,
emailConfirmed: False,
normalizedEmail: String,
email: String,
normalizedUserName: String,
username: String,
lockoutEnabled: False,
accessFailedCount: 0,
applicationLanguagesId: 0,
timezonesId: 0
},
loginDesign:
{
logo: String,
bgColor: String,
textColor: String,
mainColor: String
},
title: String
}