Skip to main content

Get user Timeline

GET 

/v1/clients/:clientID/timeline/:userId

Endpoint to retrieve user Timeline (transactions history). Useful for users to see their account operations/movements.

Request

Path Parameters

    clientID stringrequired
    userId stringrequired

Responses

Successful operation

Schema
  • Array [
  • id uuid
    authId number
    clientId string
    data object

    data field can contain any JSON value. This field gives the request some flexibility.

    amount number
    flowId string
    leaderboards object
    dimensions string[]
    keys string[]
    message string
    groupId string

    useful to group transactions.

    isComparable boolean

    indicates if this transaction should be used to calculate Leaderboards or not.

    operation string

    indicates if this transaction should increase or decrease the balance. Allowed values are CREDIT and DEBIT.

    parentId uuid

    indicates that this transaction is child of the specified parentId (i.e. this transaction is a BOOSTER of another one).

    sourceSystem string
    type string
    createdAt date-time
  • ]
Loading...