Vulcan Forge
  1. History
Vulcan Forge
  • Introduction
  • Getting Started
  • Authentication & Authorization
  • Core Concepts
    • Terminology
    • Regulated Assets
    • Tenants
    • Mapping & Labelling
    • Solana Networks
    • Transaction Processing
    • Key Management
    • Read Layer
  • API Reference
    • Blockchain Accounts
      • Create Account
      • Fetch Account Details
      • Fetch Account Balance
      • Fetch Account Private Key
      • Fetch Accounts
      • Update Account
      • Inactivate Account
    • Financial Instruments
      • Create Financial Instrument
      • Fetch Financial Instrument Details
      • Fetch Financial Instruments
      • Update Financial Instrument
      • Token Extensions Calculator
    • Positions
      • State
        • Initialize Position
        • Update Position
        • Close Position
        • Freeze Position
        • Unfreeze Position
      • Movements
        • Mint
        • Burn
        • Transfer Financial Instrument
        • Transfer SOL
      • Trades
        • Trade
      • History
        • Fetch Positions
          POST
        • Fetch Position Details
          POST
        • Fetch Position Balance
          POST
    • Loans
      • Create Loan
      • Fetch Loan Details
      • Fetch Loans
      • Swap Collateral
      • Repay Loan
      • Close Loan
      • Refinance Loan
    • Blockchain Transactions
      • Processing
        • Fetch Transaction Status
        • Sign Transaction
        • Submit Transaction
      • Durable Nonces
        • Create Durable Nonce Accounts
        • Fetch Durable Nonce Account Details
        • Fetch Durable Nonce Accounts
      • Address Lookup Tables
        • Create Address Lookup Table
        • Fetch Address Lookup Table Details
        • Fetch Address Lookup Tables
        • Extend Address Lookup Table
        • Update Address Lookup Table
      • History
        • Fetch Transactions
        • Fetch Transaction Details
    • Market Data
      • Onchain Data Sources
        • Create Onchain Data Source
        • Update Oracle Data Source Definition
        • Refresh Oracle Data Source
        • Fetch Onchain Data Source Details
        • Fetch Oracle Data Sources
  • Schemas
    • Accounts
      • DKG
        • DKG Key Setup
      • Offchain References
      • Account Lookup
      • New Account
      • Debit Limit Config
      • Limit Duration
      • Tenancy Config
      • Account Debits Config
      • Account Balance
      • Offchain File
    • Transactions
      • Solana Transaction Config
      • Commitment Config
      • Transaction Lookup
    • Query
      • Query Components
        • Sort Model
        • Field Value Filter
        • Filter Model
      • Items Query
      • Bulk Query
    • Loans
      • Loan Duration
    • Reponses
      • Errors
        • Individual Error
        • Error Response
      • Accounts
        • Private Keys
          • Private Key Details
          • Database Private Key Details
          • Cloud Provider Resource Location
          • DKG Private Key Details
        • Account Response Detailed
        • Account Onchain Detailed
        • Account Offchain Detailed
        • Account Response Identifiers
        • Account Offchain Compact
        • Account Response Compact
        • Account Onchain Compact
      • Financial Instruments
        • Financial Instrument Detailed
        • Financial Instrument Compact
        • Financial Instrument Identifiers
      • Transactions
        • Solana Transaction Result
        • Solana Entity Result
      • Positions
        • Position Offchain Result
        • Position Balance Response
        • Position Response Detailed
        • Position Response Compact
        • Position Response Identifiers
      • Loans
        • Loan Response
      • Market Data
        • Onchain Data Source Response
    • Positions
      • Position Lookup
      • Transfer SOL Definition
      • Transfer Financial Instrument Definition
      • Burn Definition
      • Mint Definition
      • Position Debits Config
      • Position Balance
    • Loans
    • Market Data
      • Onchain Data Source Details
      • Switchboard details
  1. History

Fetch Positions

Designing
Development
https://vf-solana-api.dev.alphaledger.com
Development
https://vf-solana-api.dev.alphaledger.com
POST
/api/v1/positions/bulk/{detail-level}
Creates Solana Transaction:No
OperationId:fetchPositions
Fetches a list of positions based on the provided query. Please note that the output fields will be trimmed to a smaller set of fields if the detail-level path parameter is set to identifiers or compact. Available detail levels:
detailed
compact
identifiers

Filter & Sort Options#

Usage example can be found here.
Supported filter and data types can be found here. Allowed values in the fieldName for sortModel and filterModel:
fieldNamedataTypedescriptionfiltersort
statusTEXTIndicates if the position is ACTIVE or CLOSED (ASC)**
lastTransactionAtTIMESTAMPOffchain timestamp of last transaction processed against this position
creationTransactionAtTIMESTAMPOffchain timestamp of creation transaction for this position
wasAlreadyOnchainBOOLEANIndicates if the position was already on chain at the time of the position was onboarded into Vulcan Forge
positionStateTEXTIndicates if the position is FROZEN or INITIALIZED
ownerOnchainIdONCHAIN_ADDRESS_IDThe onchain id for the owner of the position
ownerOffchainIdOFFCHAIN_IDThe offchain id for the owner of the position
financialInstrumentOnchainIdONCHAIN_ADDRESS_IDThe onchain id for the financial instrument of the position
financialInstrumentOffchainIdOFFCHAIN_IDThe offchain id for the financial instrument of the position
(ASC|DESC)** - columns that are part of the default sort if no itemQuery.sortModel is provided.
* - indicates columns that are nullable and can use the IS_NULL or IS_NOT_NULL type

Request

Authorization
Bearer Token
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
or
Path Params

Query Params

Header Params

Body Params application/json

Examples

Responses

🟢200Success
application/json
Body

🟠400Bad Request
🟠401Unauthorized
🟠403Forbidden
🟠429Too Many Requests
🔴500Internal Server Error
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://vf-solana-api.dev.alphaledger.com/api/v1/positions/bulk/compact?solanaClusterId=SOLANA_DEVNET' \
--header 'x-request-id: f9860f73-a466-41f2-a083-34eeb1cc3a3c' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "itemQuery": {
        "limit": 10,
        "skip": 0,
        "filter": [
            {
                "fieldName": "See the endpoint description for allowed values",
                "operator": "AND",
                "filterValues": [
                    {
                        "dataType": "TEXT",
                        "filterType": "EQUALS",
                        "valueString": "string",
                        "valueNumber": 0,
                        "valueBoolean": true,
                        "valuesString": [
                            "string"
                        ],
                        "valueFromString": "string",
                        "valueToString": "string",
                        "valueFromNumber": 0,
                        "valueToNumber": 0
                    }
                ]
            }
        ],
        "sort": [
            {
                "fieldName": "See the endpoint description for allowed values",
                "sortDirection": "ASC"
            }
        ]
    },
    "tenancyConfig": {
        "overrideOrganizationExternalId": "ALIM"
    }
}'
Response Response Example
200 - Example 1
{
    "count": 17,
    "items": [
        {
            "owner": {
                "onchain": {
                    "id": "6YaAdbMCV5GPRZ6AYbyEnGgggAHfEJjXTXYGrDVasQHK",
                    "lastTransactionId": "5vnjT6E19V4uQwHMojaR73XFoPjt9Y2nFn74xdDJZTK1MYScNWHpf876JFnSVzSqLxzEMLyzH355WWoiFN5ceMa9",
                    "lastTransactionAt": "2024-11-19T14:30:00.000Z",
                    "creationTransactionId": "3mTmwiMhwK286USNGGxCormm3srWcR5qmbCUb96jbz79Td53r6Nk2krCPeJ4LUUunwER8icNfGFXD2SQ8RnFPiZL",
                    "creationTransactionAt": "2024-11-19T14:30:00.000Z"
                },
                "offchain": {
                    "id": "b3e30f57-b404-4bd5-9e31-cec3298fa0bf",
                    "type": "WALLET",
                    "code": "BCDA",
                    "alId": "ALFNDPF000153786",
                    "organizationExternalId": "ALT",
                    "accountNumber": "ALT355566",
                    "name": "Trading Account",
                    "lamportsBalance": 4540000,
                    "tokenBalance": 2500000000,
                    "tokenDecimals": 8,
                    "lastTransactionId": "63e1c252-a23c-42af-a7f2-f48a2893c940",
                    "creationTransactionId": "f785791f-826b-4fe0-9547-6475518cdc7f"
                },
                "managed": true,
                "status": "ACTIVE",
                "privateKeyLocation": [
                    "SECRETS"
                ],
                "isDerived": true,
                "comments": "Some comments attached to the account",
                "subscribeToNetworkEvents": true,
                "sharedAcrossTenants": true,
                "wasOnchainAlready": true,
                "canPayFees": true,
                "globalFeePayerForOrgs": [
                    "string"
                ],
                "solDebitApiKeys": [
                    "string"
                ],
                "tokenDebitApiKeys": [
                    "string"
                ],
                "domain": "string",
                "tenantOrganizationId": "ALG"
            },
            "financialInstrument": {
                "mintAccount": {
                    "onchain": {
                        "id": "6YaAdbMCV5GPRZ6AYbyEnGgggAHfEJjXTXYGrDVasQHK",
                        "lastTransactionId": "5vnjT6E19V4uQwHMojaR73XFoPjt9Y2nFn74xdDJZTK1MYScNWHpf876JFnSVzSqLxzEMLyzH355WWoiFN5ceMa9",
                        "lastTransactionAt": "2024-11-19T14:30:00.000Z",
                        "creationTransactionId": "3mTmwiMhwK286USNGGxCormm3srWcR5qmbCUb96jbz79Td53r6Nk2krCPeJ4LUUunwER8icNfGFXD2SQ8RnFPiZL",
                        "creationTransactionAt": "2024-11-19T14:30:00.000Z"
                    },
                    "offchain": {
                        "id": "b3e30f57-b404-4bd5-9e31-cec3298fa0bf",
                        "type": "WALLET",
                        "code": "BCDA",
                        "alId": "ALFNDPF000153786",
                        "organizationExternalId": "ALT",
                        "accountNumber": "ALT355566",
                        "name": "Trading Account",
                        "lamportsBalance": 4540000,
                        "tokenBalance": 2500000000,
                        "tokenDecimals": 8,
                        "lastTransactionId": "63e1c252-a23c-42af-a7f2-f48a2893c940",
                        "creationTransactionId": "f785791f-826b-4fe0-9547-6475518cdc7f"
                    },
                    "managed": true,
                    "status": "ACTIVE",
                    "privateKeyLocation": [
                        "SECRETS"
                    ],
                    "isDerived": true,
                    "comments": "Some comments attached to the account",
                    "subscribeToNetworkEvents": true,
                    "sharedAcrossTenants": true,
                    "wasOnchainAlready": true,
                    "canPayFees": true,
                    "globalFeePayerForOrgs": [
                        "string"
                    ],
                    "solDebitApiKeys": [
                        "string"
                    ],
                    "tokenDebitApiKeys": [
                        "string"
                    ],
                    "domain": "string",
                    "tenantOrganizationId": "ALG"
                },
                "version": "TOKEN_2022",
                "mintAuthority": {
                    "onchain": {
                        "id": "6YaAdbMCV5GPRZ6AYbyEnGgggAHfEJjXTXYGrDVasQHK",
                        "lastTransactionId": "5vnjT6E19V4uQwHMojaR73XFoPjt9Y2nFn74xdDJZTK1MYScNWHpf876JFnSVzSqLxzEMLyzH355WWoiFN5ceMa9",
                        "lastTransactionAt": "2024-11-19T14:30:00.000Z",
                        "creationTransactionId": "3mTmwiMhwK286USNGGxCormm3srWcR5qmbCUb96jbz79Td53r6Nk2krCPeJ4LUUunwER8icNfGFXD2SQ8RnFPiZL",
                        "creationTransactionAt": "2024-11-19T14:30:00.000Z"
                    },
                    "offchain": {
                        "id": "b3e30f57-b404-4bd5-9e31-cec3298fa0bf",
                        "type": "WALLET",
                        "code": "BCDA",
                        "alId": "ALFNDPF000153786",
                        "organizationExternalId": "ALT",
                        "accountNumber": "ALT355566",
                        "name": "Trading Account",
                        "lamportsBalance": 4540000,
                        "tokenBalance": 2500000000,
                        "tokenDecimals": 8,
                        "lastTransactionId": "63e1c252-a23c-42af-a7f2-f48a2893c940",
                        "creationTransactionId": "f785791f-826b-4fe0-9547-6475518cdc7f"
                    },
                    "managed": true,
                    "status": "ACTIVE",
                    "privateKeyLocation": [
                        "SECRETS"
                    ],
                    "isDerived": true,
                    "comments": "Some comments attached to the account",
                    "subscribeToNetworkEvents": true,
                    "sharedAcrossTenants": true,
                    "wasOnchainAlready": true,
                    "canPayFees": true,
                    "globalFeePayerForOrgs": [
                        "string"
                    ],
                    "solDebitApiKeys": [
                        "string"
                    ],
                    "tokenDebitApiKeys": [
                        "string"
                    ],
                    "domain": "string",
                    "tenantOrganizationId": "ALG"
                },
                "onchainData": {},
                "offchainData": {},
                "updateAuthority": {
                    "onchain": {
                        "id": "6YaAdbMCV5GPRZ6AYbyEnGgggAHfEJjXTXYGrDVasQHK",
                        "lastTransactionId": "5vnjT6E19V4uQwHMojaR73XFoPjt9Y2nFn74xdDJZTK1MYScNWHpf876JFnSVzSqLxzEMLyzH355WWoiFN5ceMa9",
                        "lastTransactionAt": "2024-11-19T14:30:00.000Z",
                        "creationTransactionId": "3mTmwiMhwK286USNGGxCormm3srWcR5qmbCUb96jbz79Td53r6Nk2krCPeJ4LUUunwER8icNfGFXD2SQ8RnFPiZL",
                        "creationTransactionAt": "2024-11-19T14:30:00.000Z"
                    },
                    "offchain": {
                        "id": "b3e30f57-b404-4bd5-9e31-cec3298fa0bf",
                        "type": "WALLET",
                        "code": "BCDA",
                        "alId": "ALFNDPF000153786",
                        "organizationExternalId": "ALT",
                        "accountNumber": "ALT355566",
                        "name": "Trading Account",
                        "lamportsBalance": 4540000,
                        "tokenBalance": 2500000000,
                        "tokenDecimals": 8,
                        "lastTransactionId": "63e1c252-a23c-42af-a7f2-f48a2893c940",
                        "creationTransactionId": "f785791f-826b-4fe0-9547-6475518cdc7f"
                    },
                    "managed": true,
                    "status": "ACTIVE",
                    "privateKeyLocation": [
                        "SECRETS"
                    ],
                    "isDerived": true,
                    "comments": "Some comments attached to the account",
                    "subscribeToNetworkEvents": true,
                    "sharedAcrossTenants": true,
                    "wasOnchainAlready": true,
                    "canPayFees": true,
                    "globalFeePayerForOrgs": [
                        "string"
                    ],
                    "solDebitApiKeys": [
                        "string"
                    ],
                    "tokenDebitApiKeys": [
                        "string"
                    ],
                    "domain": "string",
                    "tenantOrganizationId": "ALG"
                },
                "freezeAuthority": {
                    "onchain": {
                        "id": "6YaAdbMCV5GPRZ6AYbyEnGgggAHfEJjXTXYGrDVasQHK",
                        "lastTransactionId": "5vnjT6E19V4uQwHMojaR73XFoPjt9Y2nFn74xdDJZTK1MYScNWHpf876JFnSVzSqLxzEMLyzH355WWoiFN5ceMa9",
                        "lastTransactionAt": "2024-11-19T14:30:00.000Z",
                        "creationTransactionId": "3mTmwiMhwK286USNGGxCormm3srWcR5qmbCUb96jbz79Td53r6Nk2krCPeJ4LUUunwER8icNfGFXD2SQ8RnFPiZL",
                        "creationTransactionAt": "2024-11-19T14:30:00.000Z"
                    },
                    "offchain": {
                        "id": "b3e30f57-b404-4bd5-9e31-cec3298fa0bf",
                        "type": "WALLET",
                        "code": "BCDA",
                        "alId": "ALFNDPF000153786",
                        "organizationExternalId": "ALT",
                        "accountNumber": "ALT355566",
                        "name": "Trading Account",
                        "lamportsBalance": 4540000,
                        "tokenBalance": 2500000000,
                        "tokenDecimals": 8,
                        "lastTransactionId": "63e1c252-a23c-42af-a7f2-f48a2893c940",
                        "creationTransactionId": "f785791f-826b-4fe0-9547-6475518cdc7f"
                    },
                    "managed": true,
                    "status": "ACTIVE",
                    "privateKeyLocation": [
                        "SECRETS"
                    ],
                    "isDerived": true,
                    "comments": "Some comments attached to the account",
                    "subscribeToNetworkEvents": true,
                    "sharedAcrossTenants": true,
                    "wasOnchainAlready": true,
                    "canPayFees": true,
                    "globalFeePayerForOrgs": [
                        "string"
                    ],
                    "solDebitApiKeys": [
                        "string"
                    ],
                    "tokenDebitApiKeys": [
                        "string"
                    ],
                    "domain": "string",
                    "tenantOrganizationId": "ALG"
                },
                "defaultPositionState": "INITIALIZED",
                "permanentDelegateAuthority": {
                    "onchain": {
                        "id": "6YaAdbMCV5GPRZ6AYbyEnGgggAHfEJjXTXYGrDVasQHK",
                        "lastTransactionId": "5vnjT6E19V4uQwHMojaR73XFoPjt9Y2nFn74xdDJZTK1MYScNWHpf876JFnSVzSqLxzEMLyzH355WWoiFN5ceMa9",
                        "lastTransactionAt": "2024-11-19T14:30:00.000Z",
                        "creationTransactionId": "3mTmwiMhwK286USNGGxCormm3srWcR5qmbCUb96jbz79Td53r6Nk2krCPeJ4LUUunwER8icNfGFXD2SQ8RnFPiZL",
                        "creationTransactionAt": "2024-11-19T14:30:00.000Z"
                    },
                    "offchain": {
                        "id": "b3e30f57-b404-4bd5-9e31-cec3298fa0bf",
                        "type": "WALLET",
                        "code": "BCDA",
                        "alId": "ALFNDPF000153786",
                        "organizationExternalId": "ALT",
                        "accountNumber": "ALT355566",
                        "name": "Trading Account",
                        "lamportsBalance": 4540000,
                        "tokenBalance": 2500000000,
                        "tokenDecimals": 8,
                        "lastTransactionId": "63e1c252-a23c-42af-a7f2-f48a2893c940",
                        "creationTransactionId": "f785791f-826b-4fe0-9547-6475518cdc7f"
                    },
                    "managed": true,
                    "status": "ACTIVE",
                    "privateKeyLocation": [
                        "SECRETS"
                    ],
                    "isDerived": true,
                    "comments": "Some comments attached to the account",
                    "subscribeToNetworkEvents": true,
                    "sharedAcrossTenants": true,
                    "wasOnchainAlready": true,
                    "canPayFees": true,
                    "globalFeePayerForOrgs": [
                        "string"
                    ],
                    "solDebitApiKeys": [
                        "string"
                    ],
                    "tokenDebitApiKeys": [
                        "string"
                    ],
                    "domain": "string",
                    "tenantOrganizationId": "ALG"
                },
                "closingAuthority": {
                    "onchain": {
                        "id": "6YaAdbMCV5GPRZ6AYbyEnGgggAHfEJjXTXYGrDVasQHK",
                        "lastTransactionId": "5vnjT6E19V4uQwHMojaR73XFoPjt9Y2nFn74xdDJZTK1MYScNWHpf876JFnSVzSqLxzEMLyzH355WWoiFN5ceMa9",
                        "lastTransactionAt": "2024-11-19T14:30:00.000Z",
                        "creationTransactionId": "3mTmwiMhwK286USNGGxCormm3srWcR5qmbCUb96jbz79Td53r6Nk2krCPeJ4LUUunwER8icNfGFXD2SQ8RnFPiZL",
                        "creationTransactionAt": "2024-11-19T14:30:00.000Z"
                    },
                    "offchain": {
                        "id": "b3e30f57-b404-4bd5-9e31-cec3298fa0bf",
                        "type": "WALLET",
                        "code": "BCDA",
                        "alId": "ALFNDPF000153786",
                        "organizationExternalId": "ALT",
                        "accountNumber": "ALT355566",
                        "name": "Trading Account",
                        "lamportsBalance": 4540000,
                        "tokenBalance": 2500000000,
                        "tokenDecimals": 8,
                        "lastTransactionId": "63e1c252-a23c-42af-a7f2-f48a2893c940",
                        "creationTransactionId": "f785791f-826b-4fe0-9547-6475518cdc7f"
                    },
                    "managed": true,
                    "status": "ACTIVE",
                    "privateKeyLocation": [
                        "SECRETS"
                    ],
                    "isDerived": true,
                    "comments": "Some comments attached to the account",
                    "subscribeToNetworkEvents": true,
                    "sharedAcrossTenants": true,
                    "wasOnchainAlready": true,
                    "canPayFees": true,
                    "globalFeePayerForOrgs": [
                        "string"
                    ],
                    "solDebitApiKeys": [
                        "string"
                    ],
                    "tokenDebitApiKeys": [
                        "string"
                    ],
                    "domain": "string",
                    "tenantOrganizationId": "ALG"
                },
                "pausableAuthority": {
                    "onchain": {
                        "id": "6YaAdbMCV5GPRZ6AYbyEnGgggAHfEJjXTXYGrDVasQHK",
                        "lastTransactionId": "5vnjT6E19V4uQwHMojaR73XFoPjt9Y2nFn74xdDJZTK1MYScNWHpf876JFnSVzSqLxzEMLyzH355WWoiFN5ceMa9",
                        "lastTransactionAt": "2024-11-19T14:30:00.000Z",
                        "creationTransactionId": "3mTmwiMhwK286USNGGxCormm3srWcR5qmbCUb96jbz79Td53r6Nk2krCPeJ4LUUunwER8icNfGFXD2SQ8RnFPiZL",
                        "creationTransactionAt": "2024-11-19T14:30:00.000Z"
                    },
                    "offchain": {
                        "id": "b3e30f57-b404-4bd5-9e31-cec3298fa0bf",
                        "type": "WALLET",
                        "code": "BCDA",
                        "alId": "ALFNDPF000153786",
                        "organizationExternalId": "ALT",
                        "accountNumber": "ALT355566",
                        "name": "Trading Account",
                        "lamportsBalance": 4540000,
                        "tokenBalance": 2500000000,
                        "tokenDecimals": 8,
                        "lastTransactionId": "63e1c252-a23c-42af-a7f2-f48a2893c940",
                        "creationTransactionId": "f785791f-826b-4fe0-9547-6475518cdc7f"
                    },
                    "managed": true,
                    "status": "ACTIVE",
                    "privateKeyLocation": [
                        "SECRETS"
                    ],
                    "isDerived": true,
                    "comments": "Some comments attached to the account",
                    "subscribeToNetworkEvents": true,
                    "sharedAcrossTenants": true,
                    "wasOnchainAlready": true,
                    "canPayFees": true,
                    "globalFeePayerForOrgs": [
                        "string"
                    ],
                    "solDebitApiKeys": [
                        "string"
                    ],
                    "tokenDebitApiKeys": [
                        "string"
                    ],
                    "domain": "string",
                    "tenantOrganizationId": "ALG"
                },
                "scaledUiAmountMultiplier": 2,
                "scaledUiAmountAuthority": {
                    "onchain": {
                        "id": "6YaAdbMCV5GPRZ6AYbyEnGgggAHfEJjXTXYGrDVasQHK",
                        "lastTransactionId": "5vnjT6E19V4uQwHMojaR73XFoPjt9Y2nFn74xdDJZTK1MYScNWHpf876JFnSVzSqLxzEMLyzH355WWoiFN5ceMa9",
                        "lastTransactionAt": "2024-11-19T14:30:00.000Z",
                        "creationTransactionId": "3mTmwiMhwK286USNGGxCormm3srWcR5qmbCUb96jbz79Td53r6Nk2krCPeJ4LUUunwER8icNfGFXD2SQ8RnFPiZL",
                        "creationTransactionAt": "2024-11-19T14:30:00.000Z"
                    },
                    "offchain": {
                        "id": "b3e30f57-b404-4bd5-9e31-cec3298fa0bf",
                        "type": "WALLET",
                        "code": "BCDA",
                        "alId": "ALFNDPF000153786",
                        "organizationExternalId": "ALT",
                        "accountNumber": "ALT355566",
                        "name": "Trading Account",
                        "lamportsBalance": 4540000,
                        "tokenBalance": 2500000000,
                        "tokenDecimals": 8,
                        "lastTransactionId": "63e1c252-a23c-42af-a7f2-f48a2893c940",
                        "creationTransactionId": "f785791f-826b-4fe0-9547-6475518cdc7f"
                    },
                    "managed": true,
                    "status": "ACTIVE",
                    "privateKeyLocation": [
                        "SECRETS"
                    ],
                    "isDerived": true,
                    "comments": "Some comments attached to the account",
                    "subscribeToNetworkEvents": true,
                    "sharedAcrossTenants": true,
                    "wasOnchainAlready": true,
                    "canPayFees": true,
                    "globalFeePayerForOrgs": [
                        "string"
                    ],
                    "solDebitApiKeys": [
                        "string"
                    ],
                    "tokenDebitApiKeys": [
                        "string"
                    ],
                    "domain": "string",
                    "tenantOrganizationId": "ALG"
                },
                "transferHookAuthority": {
                    "onchain": {
                        "id": "6YaAdbMCV5GPRZ6AYbyEnGgggAHfEJjXTXYGrDVasQHK",
                        "lastTransactionId": "5vnjT6E19V4uQwHMojaR73XFoPjt9Y2nFn74xdDJZTK1MYScNWHpf876JFnSVzSqLxzEMLyzH355WWoiFN5ceMa9",
                        "lastTransactionAt": "2024-11-19T14:30:00.000Z",
                        "creationTransactionId": "3mTmwiMhwK286USNGGxCormm3srWcR5qmbCUb96jbz79Td53r6Nk2krCPeJ4LUUunwER8icNfGFXD2SQ8RnFPiZL",
                        "creationTransactionAt": "2024-11-19T14:30:00.000Z"
                    },
                    "offchain": {
                        "id": "b3e30f57-b404-4bd5-9e31-cec3298fa0bf",
                        "type": "WALLET",
                        "code": "BCDA",
                        "alId": "ALFNDPF000153786",
                        "organizationExternalId": "ALT",
                        "accountNumber": "ALT355566",
                        "name": "Trading Account",
                        "lamportsBalance": 4540000,
                        "tokenBalance": 2500000000,
                        "tokenDecimals": 8,
                        "lastTransactionId": "63e1c252-a23c-42af-a7f2-f48a2893c940",
                        "creationTransactionId": "f785791f-826b-4fe0-9547-6475518cdc7f"
                    },
                    "managed": true,
                    "status": "ACTIVE",
                    "privateKeyLocation": [
                        "SECRETS"
                    ],
                    "isDerived": true,
                    "comments": "Some comments attached to the account",
                    "subscribeToNetworkEvents": true,
                    "sharedAcrossTenants": true,
                    "wasOnchainAlready": true,
                    "canPayFees": true,
                    "globalFeePayerForOrgs": [
                        "string"
                    ],
                    "solDebitApiKeys": [
                        "string"
                    ],
                    "tokenDebitApiKeys": [
                        "string"
                    ],
                    "domain": "string",
                    "tenantOrganizationId": "ALG"
                },
                "transferHookProgram": {
                    "onchain": {
                        "id": "6YaAdbMCV5GPRZ6AYbyEnGgggAHfEJjXTXYGrDVasQHK",
                        "lastTransactionId": "5vnjT6E19V4uQwHMojaR73XFoPjt9Y2nFn74xdDJZTK1MYScNWHpf876JFnSVzSqLxzEMLyzH355WWoiFN5ceMa9",
                        "lastTransactionAt": "2024-11-19T14:30:00.000Z",
                        "creationTransactionId": "3mTmwiMhwK286USNGGxCormm3srWcR5qmbCUb96jbz79Td53r6Nk2krCPeJ4LUUunwER8icNfGFXD2SQ8RnFPiZL",
                        "creationTransactionAt": "2024-11-19T14:30:00.000Z"
                    },
                    "offchain": {
                        "id": "b3e30f57-b404-4bd5-9e31-cec3298fa0bf",
                        "type": "WALLET",
                        "code": "BCDA",
                        "alId": "ALFNDPF000153786",
                        "organizationExternalId": "ALT",
                        "accountNumber": "ALT355566",
                        "name": "Trading Account",
                        "lamportsBalance": 4540000,
                        "tokenBalance": 2500000000,
                        "tokenDecimals": 8,
                        "lastTransactionId": "63e1c252-a23c-42af-a7f2-f48a2893c940",
                        "creationTransactionId": "f785791f-826b-4fe0-9547-6475518cdc7f"
                    },
                    "managed": true,
                    "status": "ACTIVE",
                    "privateKeyLocation": [
                        "SECRETS"
                    ],
                    "isDerived": true,
                    "comments": "Some comments attached to the account",
                    "subscribeToNetworkEvents": true,
                    "sharedAcrossTenants": true,
                    "wasOnchainAlready": true,
                    "canPayFees": true,
                    "globalFeePayerForOrgs": [
                        "string"
                    ],
                    "solDebitApiKeys": [
                        "string"
                    ],
                    "tokenDebitApiKeys": [
                        "string"
                    ],
                    "domain": "string",
                    "tenantOrganizationId": "ALG"
                },
                "confidentialTransferAuthority": {
                    "onchain": {
                        "id": "6YaAdbMCV5GPRZ6AYbyEnGgggAHfEJjXTXYGrDVasQHK",
                        "lastTransactionId": "5vnjT6E19V4uQwHMojaR73XFoPjt9Y2nFn74xdDJZTK1MYScNWHpf876JFnSVzSqLxzEMLyzH355WWoiFN5ceMa9",
                        "lastTransactionAt": "2024-11-19T14:30:00.000Z",
                        "creationTransactionId": "3mTmwiMhwK286USNGGxCormm3srWcR5qmbCUb96jbz79Td53r6Nk2krCPeJ4LUUunwER8icNfGFXD2SQ8RnFPiZL",
                        "creationTransactionAt": "2024-11-19T14:30:00.000Z"
                    },
                    "offchain": {
                        "id": "b3e30f57-b404-4bd5-9e31-cec3298fa0bf",
                        "type": "WALLET",
                        "code": "BCDA",
                        "alId": "ALFNDPF000153786",
                        "organizationExternalId": "ALT",
                        "accountNumber": "ALT355566",
                        "name": "Trading Account",
                        "lamportsBalance": 4540000,
                        "tokenBalance": 2500000000,
                        "tokenDecimals": 8,
                        "lastTransactionId": "63e1c252-a23c-42af-a7f2-f48a2893c940",
                        "creationTransactionId": "f785791f-826b-4fe0-9547-6475518cdc7f"
                    },
                    "managed": true,
                    "status": "ACTIVE",
                    "privateKeyLocation": [
                        "SECRETS"
                    ],
                    "isDerived": true,
                    "comments": "Some comments attached to the account",
                    "subscribeToNetworkEvents": true,
                    "sharedAcrossTenants": true,
                    "wasOnchainAlready": true,
                    "canPayFees": true,
                    "globalFeePayerForOrgs": [
                        "string"
                    ],
                    "solDebitApiKeys": [
                        "string"
                    ],
                    "tokenDebitApiKeys": [
                        "string"
                    ],
                    "domain": "string",
                    "tenantOrganizationId": "ALG"
                },
                "confidentialTransferAutoapproveNewAccounts": true,
                "confidentialMintBurnAuthority": {
                    "onchain": {
                        "id": "6YaAdbMCV5GPRZ6AYbyEnGgggAHfEJjXTXYGrDVasQHK",
                        "lastTransactionId": "5vnjT6E19V4uQwHMojaR73XFoPjt9Y2nFn74xdDJZTK1MYScNWHpf876JFnSVzSqLxzEMLyzH355WWoiFN5ceMa9",
                        "lastTransactionAt": "2024-11-19T14:30:00.000Z",
                        "creationTransactionId": "3mTmwiMhwK286USNGGxCormm3srWcR5qmbCUb96jbz79Td53r6Nk2krCPeJ4LUUunwER8icNfGFXD2SQ8RnFPiZL",
                        "creationTransactionAt": "2024-11-19T14:30:00.000Z"
                    },
                    "offchain": {
                        "id": "b3e30f57-b404-4bd5-9e31-cec3298fa0bf",
                        "type": "WALLET",
                        "code": "BCDA",
                        "alId": "ALFNDPF000153786",
                        "organizationExternalId": "ALT",
                        "accountNumber": "ALT355566",
                        "name": "Trading Account",
                        "lamportsBalance": 4540000,
                        "tokenBalance": 2500000000,
                        "tokenDecimals": 8,
                        "lastTransactionId": "63e1c252-a23c-42af-a7f2-f48a2893c940",
                        "creationTransactionId": "f785791f-826b-4fe0-9547-6475518cdc7f"
                    },
                    "managed": true,
                    "status": "ACTIVE",
                    "privateKeyLocation": [
                        "SECRETS"
                    ],
                    "isDerived": true,
                    "comments": "Some comments attached to the account",
                    "subscribeToNetworkEvents": true,
                    "sharedAcrossTenants": true,
                    "wasOnchainAlready": true,
                    "canPayFees": true,
                    "globalFeePayerForOrgs": [
                        "string"
                    ],
                    "solDebitApiKeys": [
                        "string"
                    ],
                    "tokenDebitApiKeys": [
                        "string"
                    ],
                    "domain": "string",
                    "tenantOrganizationId": "ALG"
                }
            },
            "position": {
                "onchain": {
                    "id": "6YaAdbMCV5GPRZ6AYbyEnGgggAHfEJjXTXYGrDVasQHK",
                    "lastTransactionId": "5vnjT6E19V4uQwHMojaR73XFoPjt9Y2nFn74xdDJZTK1MYScNWHpf876JFnSVzSqLxzEMLyzH355WWoiFN5ceMa9",
                    "lastTransactionAt": "2024-11-19T14:30:00.000Z",
                    "creationTransactionId": "3mTmwiMhwK286USNGGxCormm3srWcR5qmbCUb96jbz79Td53r6Nk2krCPeJ4LUUunwER8icNfGFXD2SQ8RnFPiZL",
                    "creationTransactionAt": "2024-11-19T14:30:00.000Z"
                },
                "offchain": {
                    "id": "b3e30f57-b404-4bd5-9e31-cec3298fa0bf",
                    "type": "WALLET",
                    "code": "BCDA",
                    "alId": "ALFNDPF000153786",
                    "organizationExternalId": "ALT",
                    "accountNumber": "ALT355566",
                    "name": "Trading Account",
                    "lamportsBalance": 4540000,
                    "tokenBalance": 2500000000,
                    "tokenDecimals": 8,
                    "lastTransactionId": "63e1c252-a23c-42af-a7f2-f48a2893c940",
                    "creationTransactionId": "f785791f-826b-4fe0-9547-6475518cdc7f"
                },
                "managed": true,
                "status": "ACTIVE",
                "privateKeyLocation": [
                    "SECRETS"
                ],
                "isDerived": true,
                "comments": "Some comments attached to the account",
                "subscribeToNetworkEvents": true,
                "sharedAcrossTenants": true,
                "wasOnchainAlready": true,
                "canPayFees": true,
                "globalFeePayerForOrgs": [
                    "string"
                ],
                "solDebitApiKeys": [
                    "string"
                ],
                "tokenDebitApiKeys": [
                    "string"
                ],
                "domain": "string",
                "tenantOrganizationId": "ALG"
            },
            "balance": {
                "offchainBalance": {
                    "amount": 107.2467,
                    "amountInLamports": 10724670000
                },
                "onchainBalance": {
                    "amount": 107.2467,
                    "amountInLamports": 10724670000
                },
                "outOfBalance": true,
                "reconciled": true
            },
            "positionState": "INITIALIZED"
        }
    ]
}
Modified at 2026-01-05 06:55:24
Previous
History
Next
Fetch Position Details
Built with