Environments to Applications report microservices
Version 0.1.0
ortelius-ms-validate-user
Method | Path | Description |
---|---|---|
GET | /health | Health |
GET | /msapi/validateuser | Validateuser |
GET | /loginhelp | Get Login Help Page |
POST | /forgot-username | Forgot Username |
POST | /forgot-password | Forgot Password |
GET | /reset-password | Get Reset Password Page |
POST | /reset-password | Reset Password |
Name | Path | Description |
---|---|---|
DomainList | #/components/schemas/DomainList | |
ForgotPasswordPayload | #/components/schemas/ForgotPasswordPayload | |
ForgotUsernamePayload | #/components/schemas/ForgotUsernamePayload | |
HTTPValidationError | #/components/schemas/HTTPValidationError | |
Message | #/components/schemas/Message | |
ResetPasswordPayload | #/components/schemas/ResetPasswordPayload | |
StatusMsg | #/components/schemas/StatusMsg | |
ValidationError | #/components/schemas/ValidationError |
- Summary
Health
- 200 Successful Response
application/json
{
status?: string
service_name?: string
}
- Summary
Validateuser
domains?: Partial(string) & Partial(null)
- 200 Successful Response
application/json
{
domains?: integer[]
}
- 422 Validation Error
application/json
{
detail: {
loc?: Partial(string) & Partial(integer)[]
msg: string
type: string
}[]
}
- Summary
Get Login Help Page
- 200 Successful Response
text/html
{
"type": "string"
}
- Summary
Forgot Username
- application/json
{
email: string
}
- 200 Successful Response
application/json
{
detail?: string
}
- 422 Validation Error
application/json
{
detail: {
loc?: Partial(string) & Partial(integer)[]
msg: string
type: string
}[]
}
- Summary
Forgot Password
- application/json
{
username: string
}
- 200 Successful Response
application/json
{
detail?: string
}
- 422 Validation Error
application/json
{
detail: {
loc?: Partial(string) & Partial(integer)[]
msg: string
type: string
}[]
}
- Summary
Get Reset Password Page
token: string
- 200 Successful Response
text/html
{
"type": "string"
}
- 422 Validation Error
application/json
{
detail: {
loc?: Partial(string) & Partial(integer)[]
msg: string
type: string
}[]
}
- Summary
Reset Password
- application/json
{
token: string
new_password: string
}
- 200 Successful Response
application/json
{
detail?: string
}
- 422 Validation Error
application/json
{
detail: {
loc?: Partial(string) & Partial(integer)[]
msg: string
type: string
}[]
}
{
domains?: integer[]
}
{
username: string
}
{
email: string
}
{
detail: {
loc?: Partial(string) & Partial(integer)[]
msg: string
type: string
}[]
}
{
detail?: string
}
{
token: string
new_password: string
}
{
status?: string
service_name?: string
}
{
loc?: Partial(string) & Partial(integer)[]
msg: string
type: string
}