| GET | /users_details |
|---|
// @DataContract
export class UsersDetailsLookup
{
// @DataMember(Order=2)
public appUserId: number;
// @DataMember(Order=3)
public approved: boolean;
// @DataMember(Order=4)
public identificationNumber: string;
// @DataMember(Order=5)
public passportNumber: string;
// @DataMember(Order=6)
public address: string;
// @DataMember(Order=7)
public latitude: number;
// @DataMember(Order=8)
public longitude: number;
// @DataMember(Order=9)
public age: number;
// @DataMember(Order=10)
public ethnicGroup: string;
// @DataMember(Order=11)
public gender: string;
// @DataMember(Order=12)
public isDisabled: boolean;
// @DataMember(Order=13)
public documentUrl: string;
// @DataMember(Order=14)
public applicationDate: string;
// @DataMember(Order=15)
public approvalDate: string;
public constructor(init?: Partial<UsersDetailsLookup>) { (Object as any).assign(this, init); }
}
TypeScript UsersDetailsLookup DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .other suffix or ?format=other
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
GET /users_details HTTP/1.1 Host: sfgboxapi.dev.scadsoftware.com Accept: text/jsonl
HTTP/1.1 200 OK
Content-Type: text/jsonl
Content-Length: length
{Unable to show example output for type 'IEnumerable`1' using the custom 'other' filter}Cannot dynamically create an instance of type 'System.Collections.Generic.IEnumerable`1[sfgboxapi.ServiceModel.UsersDetailsLookupResponse]'. Reason: Cannot create an instance of an interface.