Plisio
plisioPlisio is a cryptocurrency payment gateway that enables businesses to accept payments in over 15 cryptocurrencies, including Bitcoin, Ethereum, and Litecoin.
Acciones disponibles (6)
Cada acción es una operación que el agente puede ejecutar contra este conector. Haz clic en una acción para ver sus parámetros.
Get BalancePLISIO_GET_BALANCEAcciónTool to retrieve all account balances. use after api credentials are configured.
PLISIO_GET_BALANCEAcciónTool to retrieve all account balances. use after api credentials are configured.
Parámetros de entrada
psys_cidstringObligatorioCurrency code to filter balances, e.g., 'BTC'
Parámetros de salida
dataobjectObligatorioMapping of currency codes to their balance details
errorstringError if any occurred during the execution of the action
statusstringObligatorioResult status, e.g., 'success'
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get All BalancesPLISIO_GET_BALANCESAcciónTool to retrieve balances for a specific cryptocurrency. requires psys cid (currency code).
PLISIO_GET_BALANCESAcciónTool to retrieve balances for a specific cryptocurrency. requires psys cid (currency code).
Parámetros de entrada
psys_cidstringObligatorioCurrency code to filter balances, e.g., 'BTC'
Parámetros de salida
dataobjectObligatorioMapping of currency codes to their balance strings
errorstringError if any occurred during the execution of the action
statusstringObligatorioResult status, e.g., 'success'
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get Fee PlansPLISIO_GET_FEE_PLANSAcciónTool to retrieve available fee plans for a given cryptocurrency. specify a currency symbol like 'btc', 'eth' to get fee plan details.
PLISIO_GET_FEE_PLANSAcciónTool to retrieve available fee plans for a given cryptocurrency. specify a currency symbol like 'btc', 'eth' to get fee plan details.
Parámetros de entrada
currencystringObligatorioCryptocurrency symbol, e.g., 'BTC'
Parámetros de salida
dataobjectObligatorioData object mapping plan keys to fee details
errorstringError if any occurred during the execution of the action
statusstringObligatorioAPI response status
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get Plisio OperationsPLISIO_GET_OPERATIONSAcciónTool to retrieve a list of operations (deposits and withdrawals). use when you need to fetch deposit and withdrawal transactions with optional filters and pagination. example: getoperations(currency='btc', limit=50).
PLISIO_GET_OPERATIONSAcciónTool to retrieve a list of operations (deposits and withdrawals). use when you need to fetch deposit and withdrawal transactions with optional filters and pagination. example: getoperations(currency='btc', limit=50).
Parámetros de entrada
pageintegerPage number (0-indexed) for pagination, must be >= 0.
typestringenumFilter by operation type: 'deposit' or 'withdraw'.
depositwithdrawlimitintegerNumber of results per page (max 100).
offsetintegerNumber of records to skip for pagination, must be >= 0.
currencystringFilter by cryptocurrency code, e.g., 'BTC', 'ETH'.
Parámetros de salida
dataobject[]ObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get Plisio TransactionsPLISIO_GET_TRANSACTIONSAcciónTool to retrieve a list of transactions and invoices. use after authenticating with your api key to fetch historical operations with optional filters and pagination. example: gettransactions(status='paid', limit=20).
PLISIO_GET_TRANSACTIONSAcciónTool to retrieve a list of transactions and invoices. use after authenticating with your api key to fetch historical operations with optional filters and pagination. example: gettransactions(status='paid', limit=20).
Parámetros de entrada
tointegerEnd date as UNIX timestamp (inclusive)
pageintegerPage number (0-indexed)
typestringenumFilter by operation type (withdraw, invoice, mass_withdraw)
withdrawinvoicemass_withdrawlimitintegerNumber of results per page (max 100)
sinceintegerStart date as UNIX timestamp (inclusive)
statusstringenumFilter by operation status (pending, paid, cancelled, error, expired, processing)
pendingpaidcancellederrorexpiredprocessingcurrencystringFilter by cryptocurrency code, e.g., 'BTC'
order_idstringFilter by your own order ID
order_namestringFilter by your own order name
Parámetros de salida
dataobject[]ObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get Plisio WithdrawalsPLISIO_GET_WITHDRAWALSAcciónTool to retrieve a list of withdrawal operations. use when you need to fetch only withdrawal operations with optional filters and pagination. example: getwithdrawals(status='paid', limit=20).
PLISIO_GET_WITHDRAWALSAcciónTool to retrieve a list of withdrawal operations. use when you need to fetch only withdrawal operations with optional filters and pagination. example: getwithdrawals(status='paid', limit=20).
Parámetros de entrada
tointegerEnd timestamp as UNIX epoch (inclusive)
pageintegerPage number (0-indexed)
limitintegerNumber of results per page (max 100)
sinceintegerStart timestamp as UNIX epoch (inclusive)
statusstringenumFilter by withdrawal status (pending, paid, cancelled, error, expired, processing)
pendingpaidcancellederrorexpiredprocessingcurrencystringFilter by cryptocurrency code, e.g., 'BTC'
wallet_hashstringFilter by specific wallet hash
Parámetros de salida
dataobject[]ObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not