| GET | /club/{StoreId}/Users/all | Get all Users for club |
|---|
export class ApiDtoBase implements IApiDtoBase
{
public ApiKey?: string;
public StoreId?: number;
public ChainId?: number;
public constructor(init?: Partial<ApiDtoBase>) { (Object as any).assign(this, init); }
}
export class GetAllUsersRequestDto extends ApiDtoBase
{
public IncludeDeleted: boolean;
public constructor(init?: Partial<GetAllUsersRequestDto>) { super(init); (Object as any).assign(this, init); }
}
export enum RestrictedResourceType
{
Store = 'Store',
Chain = 'Chain',
User = 'User',
Undefined = 'Undefined',
}
export class GetAllUsersRequest extends GetAllUsersRequestDto implements IRestrictedApiRequest
{
/**
* IP address of the end user
*/
// @ApiMember(Description="IP address of the end user", Name="X-Forwarded-For", ParameterType="header")
public XForwardedFor: string;
/**
* Api Key - grants access to resources
*/
// @ApiMember(DataType="string", Description="Api Key - grants access to resources", IsRequired=true, Name="ApiKey", ParameterType="query")
public ApiKey: string;
/**
* Chain ID
*/
// @ApiMember(DataType="integer", Description="Chain ID", Name="ChainId", ParameterType="query")
public ChainId?: number;
/**
* Store ID
*/
// @ApiMember(DataType="integer", Description="Store ID", IsRequired=true, Name="StoreId", ParameterType="query")
public StoreId: number;
/**
* Include deleted users in result? (defaults to false)
*/
// @ApiMember(DataType="bool", Description="Include deleted users in result? (defaults to false)", Name="IncludeDeleted", ParameterType="query")
public IncludeDeleted: boolean;
/**
* Max number of records to include in the response.
*/
// @ApiMember(DataType="int", Description="Max number of records to include in the response.", Name="PageSize", ParameterType="query")
public PageSize?: number;
/**
* Page number to retrieve.
*/
// @ApiMember(DataType="int", Description="Page number to retrieve.", Name="PageNumber", ParameterType="query")
public PageNumber?: number;
public RestrictedId?: number;
public RestrictedResourceType: RestrictedResourceType;
public constructor(init?: Partial<GetAllUsersRequest>) { super(init); (Object as any).assign(this, init); }
}
TypeScript GetAllUsersRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
GET /club/{StoreId}/Users/all HTTP/1.1
Host: www.clubready.com
Accept: text/jsv
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length
[
{
UserId: 0,
Prospect: False,
Member: False,
DateAdded: 0001-01-01,
Email: String,
FirstName: String,
LastName: String,
StoreId: 0,
Username: String,
Address: String,
City: String,
State: String,
Zip: String,
Barcode: String,
Phone: String,
CellPhone: String,
ExternalUserId: String,
ProspectTypeName: String,
DateOfBirth: String,
MemberSinceDate: String,
MembershipExpiresDate: String,
MembershipEndedDate: String,
EmailOptOut: False,
SmsOptOut: False,
SmsOptIn: False,
ReferralTypeId: 0,
ReferralTypeName: String
}
]