Authentication
Authentication is the process of verifying a user's identity using credentials or other authentication methods. Once authentication is successfully completed and validated, the process of authorization begins — determining what actions or resources the authenticated user is permitted to access.
In cidaas, every API endpoint requires a valid and active Access Token to perform API operations (except the public endpoints). This Access Token is a unique, time-bound string that confirms the user's authentication and grants secure access to the API resources.
You can learn more about cidaas authentication from our exclusive documentation.
Authentication
- OAuth 2.0: oauth2
- HTTP: Basic Auth
- HTTP: Bearer Auth
Security Scheme Type: | oauth2 |
|---|---|
OAuth Flow (authorizationCode): | Token URL: https://domain/token-srv/token Authorization URL: https://domain/authz-srv/authz Scopes:
|
OAuth Flow (clientCredentials): | Token URL: https://domain/token-srv/token Scopes:
|
OAuth Flow (implicit): | Authorization URL: https://domain/authz-srv/authz Scopes:
|
Security Scheme Type: | http |
|---|---|
HTTP Authorization Scheme: | basic |
Bearer token authentication. The token must be a valid access token issued by cidaas.
Security Scheme Type: | http |
|---|---|
HTTP Authorization Scheme: | bearer |
Bearer format: | JWT |
Terms of Service
https://www.cidaas.com/terms-of-use/