Waffle API
  1. Account
Waffle API
  • Overview
  • Authentication
    • Get access token
      POST
    • Refresh token
      POST
    • Revoke token
      POST
  • Game
    • List games
      GET
    • Get loyalty program by ID
      GET
    • Create new game
      POST
    • Update game by ID
      PUT
    • Delete game by ID
      DELETE
  • Ticket
  • Game Account
    • List game accounts
      GET
    • Get game account by ID
      GET
    • Search game accounts
      POST
  • Report
  • Game Service
    • Gen Token
      POST
    • Login
      POST
    • List games
      GET
    • Verify Session
      GET
  • Schemas
    • Game
      • Game
        • Game
        • GameCurrencyTerminology
      • Event
        • GameEvent
        • GameEventsQuery
        • GameEventsSort
        • GameEventsFilter
      • Account
        • GameAccount
        • GameAccountsQuery
        • GameAccountsSort
        • GameAccountsFilter
    • Model
      • Error Response
      • Pagination Response
      • Token
      • AvailableTimeData
      • TimeRange
      • Money
  1. Account

GameAccountsQuery

The search criteria for the loyalty accounts.

{
    "filter": {
        "fuzzy": "string",
        "createdAt": {
            "startAt": "2019-08-24T14:15:22Z",
            "endAt": "2019-08-24T14:15:22Z"
        },
        "updatedAt": {
            "startAt": "2019-08-24T14:15:22Z",
            "endAt": "2019-08-24T14:15:22Z"
        }
    },
    "sort": {
        "field": "DEFAULT",
        "order": "ASC"
    }
}
Built with