OpenAura
  1. Response
OpenAura
  • Authentication
    • Register
      POST
    • Login
      POST
    • GetUserId
      GET
    • RefreshToken
      POST
    • Login Copy
      POST
    • Login Copy Copy
      POST
  • Schemas
    • Authentication
      • Request
        • UserCreationRequest
        • UserAuthRequest
      • Response
        • UserAuthResponse
        • ApiResponse
        • ApiError
  1. Response

ApiResponse

Contains fields for status, code, message, data, and errors.
data is generic, so its type will be specified depending on the response.
errors is an array of ApiError objects.

{
    "status": "string",
    "code": 0,
    "message": "string",
    "data": {},
    "errors": [
        {
            "field": "string",
            "message": "string"
        }
    ]
}
Built with