Download OpenAPI specification:Download
The API for Konnect Portal authentication.
This endpoint allows a developer to authenticate to their portal using a username and password.
The request schema for the authenticate endpoint.
| username required | string <email> |
| password required | string <password> |
{- "username": "developer@example.com",
- "password": "<!N0taP@$$w0rd!>"
}{- "status": 400,
- "title": "Bad Request",
- "instance": "konnect:trace:8988732526256293040",
- "detail": "The provided token is invalid",
- "invalid_parameters": [
- {
- "field": "token",
- "reason": "invalid ID format"
}
]
}This endpoint allows a developer to authenticate to their portal using an external IdP.
{- "status": 400,
- "title": "Bad Request",
- "instance": "konnect:trace:8988732526256293040",
- "detail": "The provided token is invalid",
- "invalid_parameters": [
- {
- "field": "token",
- "reason": "invalid ID format"
}
]
}This endpoint allows a developer to reset their password, using a reset token.
The request schema for the reset password endpoint.
| password required | string <password> |
| token required | string <uuid> |
{- "password": "<!D3finitelyN0taP@$$w0rd!>",
- "token": "c8efd006-d8e1-4743-b91b-f163b9eae06a"
}{- "status": 400,
- "title": "Bad Request",
- "instance": "konnect:trace:8988732526256293040",
- "detail": "The provided token is invalid",
- "invalid_parameters": [
- {
- "field": "token",
- "reason": "invalid ID format"
}
]
}This endpoint allows a new developer to verify their email.
The request schema for the verify email endpoint.
| token required | string <uuid> |
{- "token": "c8efd006-d8e1-4743-b91b-f163b9eae06a"
}{- "email": "developer@example.com",
- "token": "c8efd006-d8e1-4743-b91b-f163b9eae06a"
}