POST api/User/GetUser

Request Information

URI Parameters

None.

Body Parameters

GrantAccess
NameDescriptionTypeAdditional information
status

boolean

None.

message

string

None.

FirstName

string

None.

LastName

string

None.

Email

string

None.

FullName

string

None.

OrganizationName

string

None.

UserId

string

None.

UserRole

integer

None.

SubscriberCode

string

None.

IsActive

string

None.

access_token

string

None.

LoginTime

date

None.

AdminId

string

None.

allowOneTimePayment

string

None.

PaymentMethods

PaymentMethodPermission

None.

Request Formats

application/json, text/json

Sample:
{
  "status": true,
  "message": "sample string 2",
  "FirstName": "sample string 3",
  "LastName": "sample string 4",
  "Email": "sample string 5",
  "FullName": "sample string 6",
  "OrganizationName": "sample string 7",
  "UserId": "sample string 8",
  "UserRole": 9,
  "SubscriberCode": "sample string 10",
  "IsActive": "sample string 11",
  "access_token": "sample string 12",
  "LoginTime": "2026-04-15T18:46:11.9974127+00:00",
  "AdminId": "sample string 13",
  "allowOneTimePayment": "sample string 14",
  "PaymentMethods": {
    "PaypalPaymentMethod": true,
    "PaypalOnetimePayment": true,
    "PaypalRecurringPayment": true,
    "StripePaymentMethod": true,
    "StripeOnetimePayment": true,
    "StripeRecurringPayment": true
  }
}

application/xml, text/xml

Sample:
<GrantAccess xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Flag360.Models">
  <AdminId>sample string 13</AdminId>
  <Email>sample string 5</Email>
  <FirstName>sample string 3</FirstName>
  <FullName>sample string 6</FullName>
  <IsActive>sample string 11</IsActive>
  <LastName>sample string 4</LastName>
  <LoginTime>2026-04-15T18:46:11.9974127+00:00</LoginTime>
  <OrganizationName>sample string 7</OrganizationName>
  <PaymentMethods>
    <PaypalOnetimePayment>true</PaypalOnetimePayment>
    <PaypalPaymentMethod>true</PaypalPaymentMethod>
    <PaypalRecurringPayment>true</PaypalRecurringPayment>
    <StripeOnetimePayment>true</StripeOnetimePayment>
    <StripePaymentMethod>true</StripePaymentMethod>
    <StripeRecurringPayment>true</StripeRecurringPayment>
  </PaymentMethods>
  <SubscriberCode>sample string 10</SubscriberCode>
  <UserId>sample string 8</UserId>
  <UserRole>9</UserRole>
  <access_token>sample string 12</access_token>
  <allowOneTimePayment>sample string 14</allowOneTimePayment>
  <message>sample string 2</message>
  <status>true</status>
</GrantAccess>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.