GetLoginProfileResponse

Contains the response to a successful GetLoginProfile request.

APIs.ioEngineeringPlatform

Properties

Name Type Description
LoginProfile object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-getloginprofileresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GetLoginProfileResponse",
  "title": "GetLoginProfileResponse",
  "type": "object",
  "required": [
    "LoginProfile"
  ],
  "example": {
    "LoginProfile": {
      "CreateDate": "2012-09-21 23:03:39+00:00",
      "UserName": "Anika"
    }
  },
  "properties": {
    "LoginProfile": {
      "allOf": [
        {
          "$ref": "#/components/schemas/LoginProfile"
        },
        {
          "description": "A structure containing the user name and the profile creation date for the user."
        }
      ]
    }
  },
  "description": "Contains the response to a successful <a>GetLoginProfile</a> request. "
}