digitaluapi

<back to all web services

UserAuthDetailLookup

Requires Authentication
Requires any of the roles:Client, Admin, Partner
The following routes are available for this service:
GET/user_auth_detail
"use strict";
export class UserAuthDetailLookup {
    /** @param {{UserAuthId?:number,Provider?:string,UserId?:string,UserName?:string,FullName?:string,DisplayName?:string,FirstName?:string,LastName?:string,Company?:string,Email?:string,PhoneNumber?:string,BirthDate?:string,BirthDateRaw?:string,Address?:string,Address2?:string,City?:string,State?:string,Country?:string,Culture?:string,Gender?:string,Language?:string,MailAddress?:string,NickName?:string,PostalCode?:string,TimeZone?:string,RefreshToken?:string,RefreshTokenExpiry?:string,RequestToken?:string,RequestTokenSecret?:string,Items?:string,AccessToken?:string,AccessTokenSecret?:string,CreatedDate?:string,ModifiedDate?:string,RefId?:number,RefIdStr?:string,Meta?:string}} [init] */
    constructor(init) { Object.assign(this, init) }
    /** @type {number} */
    UserAuthId;
    /** @type {string} */
    Provider;
    /** @type {string} */
    UserId;
    /** @type {string} */
    UserName;
    /** @type {string} */
    FullName;
    /** @type {string} */
    DisplayName;
    /** @type {string} */
    FirstName;
    /** @type {string} */
    LastName;
    /** @type {string} */
    Company;
    /** @type {string} */
    Email;
    /** @type {string} */
    PhoneNumber;
    /** @type {?string} */
    BirthDate;
    /** @type {string} */
    BirthDateRaw;
    /** @type {string} */
    Address;
    /** @type {string} */
    Address2;
    /** @type {string} */
    City;
    /** @type {string} */
    State;
    /** @type {string} */
    Country;
    /** @type {string} */
    Culture;
    /** @type {string} */
    Gender;
    /** @type {string} */
    Language;
    /** @type {string} */
    MailAddress;
    /** @type {string} */
    NickName;
    /** @type {string} */
    PostalCode;
    /** @type {string} */
    TimeZone;
    /** @type {string} */
    RefreshToken;
    /** @type {?string} */
    RefreshTokenExpiry;
    /** @type {string} */
    RequestToken;
    /** @type {string} */
    RequestTokenSecret;
    /** @type {string} */
    Items;
    /** @type {string} */
    AccessToken;
    /** @type {string} */
    AccessTokenSecret;
    /** @type {string} */
    CreatedDate;
    /** @type {string} */
    ModifiedDate;
    /** @type {?number} */
    RefId;
    /** @type {string} */
    RefIdStr;
    /** @type {string} */
    Meta;
}

JavaScript UserAuthDetailLookup DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv

HTTP + JSV

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

GET /user_auth_detail HTTP/1.1 
Host: duengageapi.uat.scadsoftware.com 
Accept: text/jsv
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

[
	{
		UserAuthId: 0,
		Provider: String,
		UserId: String,
		UserName: String,
		FullName: String,
		DisplayName: String,
		FirstName: String,
		LastName: String,
		Company: String,
		Email: String,
		PhoneNumber: String,
		BirthDate: 0001-01-01T00:00:00.0000000+00:00,
		BirthDateRaw: String,
		Address: String,
		Address2: String,
		City: String,
		State: String,
		Country: String,
		Culture: String,
		Gender: String,
		Language: String,
		MailAddress: String,
		NickName: String,
		PostalCode: String,
		TimeZone: String,
		RefreshToken: String,
		RefreshTokenExpiry: 0001-01-01T00:00:00.0000000+00:00,
		RequestToken: String,
		RequestTokenSecret: String,
		Items: String,
		AccessToken: String,
		AccessTokenSecret: String,
		CreatedDate: 0001-01-01T00:00:00.0000000+00:00,
		ModifiedDate: 0001-01-01T00:00:00.0000000+00:00,
		RefId: 0,
		RefIdStr: String,
		Meta: String,
		ResponseStatus: 
		{
			ErrorCode: String,
			Message: String,
			StackTrace: String,
			Errors: 
			[
				{
					ErrorCode: String,
					FieldName: String,
					Message: String,
					Meta: 
					{
						String: String
					}
				}
			],
			Meta: 
			{
				String: String
			}
		}
	}
]