GET api/GoogleUser/GetGoogleUserByClientUserID?ClientUserID={ClientUserID}&CustomerCode={CustomerCode}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
ClientUserID

string

Required

CustomerCode

string

Required

Body Parameters

None.

Response Information

Resource Description

GoogleUser
NameDescriptionTypeAdditional information
ID

string

None.

Name

string

String length: inclusive between 0 and 250

Given_Name

string

String length: inclusive between 0 and 250

Family_Name

string

String length: inclusive between 0 and 250

Email

string

String length: inclusive between 0 and 50

Link

string

String length: inclusive between 0 and 250

Picture

string

None.

Token_Type

string

String length: inclusive between 0 and 50

Client_User_ID

integer

None.

CreateDate

date

None.

LastModifiedOn

date

None.

Response Formats

application/json, text/json

Sample:
{
  "ID": "sample string 1",
  "Name": "sample string 2",
  "Given_Name": "sample string 3",
  "Family_Name": "sample string 4",
  "Email": "sample string 5",
  "Link": "sample string 6",
  "Picture": "sample string 7",
  "Token_Type": "sample string 10",
  "Client_User_ID": 11,
  "CreateDate": "16/10/2025 02:38",
  "LastModifiedOn": "16/10/2025 02:38"
}

application/xml, text/xml

Sample:
<GoogleUser xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SM.Data.Models.Audience">
  <Access_Token>sample string 8</Access_Token>
  <Client_User_ID>11</Client_User_ID>
  <CreateDate>2025-10-16T02:38:52.2466863+01:00</CreateDate>
  <Email>sample string 5</Email>
  <Family_Name>sample string 4</Family_Name>
  <Given_Name>sample string 3</Given_Name>
  <ID>sample string 1</ID>
  <LastModifiedOn>2025-10-16T02:38:52.2466863+01:00</LastModifiedOn>
  <Link>sample string 6</Link>
  <Name>sample string 2</Name>
  <Picture>sample string 7</Picture>
  <Refresh_Token>sample string 9</Refresh_Token>
  <Token_Type>sample string 10</Token_Type>
</GoogleUser>