myDepositAndWithdrawalHistory
Query — returns list[TransactionHistory].
List of all deposits and withdrawals for account
Parameters
| Name | GraphQL type | Required | Description |
|---|---|---|---|
pagination | Pagination | No | — |
paymentSettings
Query — returns PaymentProviders.
Returns Payment provider’s settings
Example
paysafeDeposit
Mutation — returns PaysafeTransactionResult.
Called to deposit money in a user’s account via paysafe.
Parameters
| Name | GraphQL type | Required | Description |
|---|---|---|---|
amount | PosInt! | Yes | The amount to deposit which must match the amount from the token. |
handle | String | No | The optional handle obtained from Paysafe for the deposit. If not provided it will be generated by the server |
handleId | String | No | The optional id of the handle obtained from paysafe for the deposit. |
method | PaysafeDepositApi | No | The method of deposit such as credit card. |
api | PaysafeDepositApi | No | The Paysafe API to use when making the deposit. |
type | PaysafeDepositType! | Yes | Paysafe’s payment type. In example: interac, vip-preferred |
description | String | No | An optional description to add to the deposit. |
interacMethod | InteracMethodType | No | Interac e-transfer method - send_money or request_money |
paysafeWithdrawal
Mutation — returns PaysafeTransactionResult.
Called to withdraw funds from the platform, currently only ACH paysafe supported.
Parameters
| Name | GraphQL type | Required | Description |
|---|---|---|---|
amount | PosInt! | Yes | The amount to withdraw from the user’s account. |
handle | String | No | The handle obtained from Paysafe for the withdrawal. Can be null, in this case the withdrawal will wait for approval. |
handleId | String | No | The id of the handle obtained from paysafe for the withdrawal. |
method | PaysafeWithdrawalApi! | Yes | The Payment method, currently card or paymenthub is supported. |
type | PaysafeWithdrawalType! | Yes | Paysafe’s payment type. |
description | String | No | Optional description of the payment. |
updatePaysafeSettings
Mutation — returns bool.
Updates user’s payment settings.
Parameters
| Name | GraphQL type | Required | Description |
|---|---|---|---|
vipRegistrationId | String! | Yes | VIP Preferred registration id |

