GET V2/odata/OAuthUser

Gets OAuthUser entities

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of QicsUnity.Api.Areas.V2.Models.OAuthUser
NameDescriptionTypeAdditional information
OAuthUserId

Gets or sets OAuthUserId

integer

Required

64-bit signed integer

UserName

Gets or sets UserName

string

Required

AccessToken

Gets or sets AccessToken

string

AuthenticationExpiresOn

Gets or sets AuthenticationExpiresOn

date

date and time of day

Nullable

AuthenticationUrl

Gets or sets AuthenticationUrl

string

Required

Name

Gets or sets Name

string

AuthorizedUser

Gets or sets authorized user

string

Response Formats

application/json, text/json

Sample:
[
  {
    "OAuthUserId": "1",
    "UserName": "sample 2",
    "AccessToken": "sample 3",
    "AuthenticationExpiresOn": "2024-04-19T02:44:26.0550418+00:00",
    "AuthenticationUrl": "sample 4",
    "Name": "sample 5",
    "AuthorizedUser": "sample 6"
  },
  {
    "OAuthUserId": "1",
    "UserName": "sample 2",
    "AccessToken": "sample 3",
    "AuthenticationExpiresOn": "2024-04-19T02:44:26.0550418+00:00",
    "AuthenticationUrl": "sample 4",
    "Name": "sample 5",
    "AuthorizedUser": "sample 6"
  }
]

application/xml, text/xml

Sample:
<ArrayOfOAuthUser xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/QicsUnity.Api.Areas.V2.Models">
  <OAuthUser>
    <AccessToken>sample 3</AccessToken>
    <AuthenticationExpiresOn>2024-04-19T02:44:26.0550418+00:00</AuthenticationExpiresOn>
    <AuthenticationUrl>sample 4</AuthenticationUrl>
    <AuthorizedUser>sample 6</AuthorizedUser>
    <Name>sample 5</Name>
    <OAuthUserId>1</OAuthUserId>
    <UserName>sample 2</UserName>
  </OAuthUser>
  <OAuthUser>
    <AccessToken>sample 3</AccessToken>
    <AuthenticationExpiresOn>2024-04-19T02:44:26.0550418+00:00</AuthenticationExpiresOn>
    <AuthenticationUrl>sample 4</AuthenticationUrl>
    <AuthorizedUser>sample 6</AuthorizedUser>
    <Name>sample 5</Name>
    <OAuthUserId>1</OAuthUserId>
    <UserName>sample 2</UserName>
  </OAuthUser>
</ArrayOfOAuthUser>