Query withdrawals

Retrieving all your withdrawals

{
  withdrawals {
    id
    recipient { firstName lastName }
    # there are many other properties
  }
}

Retrieving some of your withdrawals

{
  # there are more query parameters available, see the API schema
  withdrawals(input: { statuses: CONFIRMED, maxCreatedAt: "2020-01-29" }) {
    id
    createdAt
    # there are many other properties
  }
}

Retrieving a single withdrawal

{
  # there are more query parameters available, see the API schema
  withdrawal(id: "5b04c62ec0bf606bf216ae21") {
    status
    createdAt
    amount
    # there are many other properties
  }
}

Last updated