1. Docs
  2. API Reference
  3. LoginResponseDto

The LoginResponseDto object

Example

{
  "requires_account_selection": false,
  "requires_application_selection": false,
  "expires_in": 0,
  "user": {
    "id": "string",
    "email": "string",
    "first_name": "string",
    "last_name": "string"
  },
  "access_token": "string",
  "token_type": "string",
  "default_environment_slug": "string",
  "account": {
    "account_id": "string",
    "account_name": "string",
    "account_slug": "string",
    "applications": [
      {
        "id": "string",
        "name": "string",
        "slug": "string"
      }
    ]
  },
  "applications": [
    {
      "id": "string",
      "name": "string",
      "slug": "string"
    }
  ],
  "accounts": [
    {
      "account_id": "string",
      "account_name": "string",
      "account_slug": "string",
      "applications": [
        {
          "id": "string",
          "name": "string",
          "slug": "string"
        }
      ]
    }
  ]
}

Properties

  • requires_account_selectionboolean*
  • requires_application_selectionboolean*
  • expires_innumber*
  • userAuthUserDto
  • access_tokenstring
  • token_typestring
  • default_environment_slugstring
  • accountAuthAccountDto
  • applicationsAuthApplicationDto[]
  • accountsAuthAccountDto[]