POST api/Account/OnboardVggAdmin

Request Information

URI Parameters

None.

Body Parameters

SsoUserResponse
NameDescriptionTypeAdditional information
EmailConfirmed

boolean

None.

Exists

boolean

None.

Response

UserDataResponse

None.

CustomValue

string

None.

TotalRecords

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "EmailConfirmed": true,
  "Exists": true,
  "Response": {
    "LastUpdate": "2024-11-04T16:19:35.0397013+00:00",
    "CreatedDate": "2024-11-04T16:19:35.0397013+00:00",
    "Email": "sample string 1",
    "LastName": "sample string 2",
    "FirstName": "sample string 3",
    "PhoneNumber": "sample string 4",
    "EmailConfirmed": true,
    "PhoneNumberConfirmed": true,
    "TwoFactorEnabled": true,
    "LockoutEndDateUtc": "2024-11-04T16:19:35.0397013+00:00",
    "LockoutEnabled": true,
    "Claims": [
      {
        "Type": "sample string 1",
        "Value": "sample string 2",
        "UserRole": "sample string 3"
      },
      {
        "Type": "sample string 1",
        "Value": "sample string 2",
        "UserRole": "sample string 3"
      }
    ],
    "IsGoogleAuthenticatorEnabled": true,
    "UserName": "sample string 5",
    "Id": "sample string 6",
    "AccessFailedCount": 1
  },
  "CustomValue": "sample string 3",
  "TotalRecords": 4
}

application/xml, text/xml

Sample:
<SsoUserResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AvicollectSecurity.Logic.Models">
  <CustomValue>sample string 3</CustomValue>
  <EmailConfirmed>true</EmailConfirmed>
  <Exists>true</Exists>
  <Response>
    <AccessFailedCount>1</AccessFailedCount>
    <Claims>
      <ClaimBindingModel>
        <Type>sample string 1</Type>
        <UserRole>sample string 3</UserRole>
        <Value>sample string 2</Value>
      </ClaimBindingModel>
      <ClaimBindingModel>
        <Type>sample string 1</Type>
        <UserRole>sample string 3</UserRole>
        <Value>sample string 2</Value>
      </ClaimBindingModel>
    </Claims>
    <CreatedDate>2024-11-04T16:19:35.0397013+00:00</CreatedDate>
    <Email>sample string 1</Email>
    <EmailConfirmed>true</EmailConfirmed>
    <FirstName>sample string 3</FirstName>
    <Id>sample string 6</Id>
    <IsGoogleAuthenticatorEnabled>true</IsGoogleAuthenticatorEnabled>
    <LastName>sample string 2</LastName>
    <LastUpdate>2024-11-04T16:19:35.0397013+00:00</LastUpdate>
    <LockoutEnabled>true</LockoutEnabled>
    <LockoutEndDateUtc>2024-11-04T16:19:35.0397013+00:00</LockoutEndDateUtc>
    <PhoneNumber>sample string 4</PhoneNumber>
    <PhoneNumberConfirmed>true</PhoneNumberConfirmed>
    <TwoFactorEnabled>true</TwoFactorEnabled>
    <UserName>sample string 5</UserName>
  </Response>
  <TotalRecords>4</TotalRecords>
</SsoUserResponse>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'SsoUserResponse'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.