EGP Blockchain Transactions System
  1. contract interactions
EGP Blockchain Transactions System
  • Overview
  • Our JavaScript/TypeSctipt SDK
  • users
    • Register a new user
      POST
    • Get user profile
      GET
    • Get user profile
      GET
    • Update user profile
      PUT
    • Delete user account
      DELETE
  • auth
    • Change password
      POST
    • Login
      POST
    • Logout
      POST
    • Refresh token
      POST
  • organizations
    • List organizations
    • Create a new organization
    • List organization balance wallets
    • Deploy a new OrganizationBalancesWalletUpgradeable contract
    • Update an organization balance wallet
    • Get an organization by ID
    • Update an organization
    • Delete an organization
    • List organization members
    • Add a member to an organization
    • Remove a member from an organization
    • List all organizations in the system
  • API keys
    • List user's API keys
    • Generate a new API key with Vault storage
    • Get API key details
    • Revoke an API key
    • Update API key
  • wallets
    • List wallets
    • Create wallet
    • Get wallet details
    • Update wallet
    • Delete wallet
    • Get wallet balance
    • Sign wallet transaction
    • Get wallet statistics
    • Get wallet transactions
    • Get Solana Wallet History
  • transactions send
    • Commit and Send Approved Transaction
  • transactions approvals
    • List pending approvals
    • Approve transaction
    • Reject transaction
    • Request approval
    • List transaction approvals
    • Get approval
  • transactions create
    • Create transaction
    • Estimate transaction fee
    • Get transaction
    • Confirm transaction
  • transactions information
    • List transactions
    • Get transaction by hash
    • Get transaction status
    • Track external transaction
    • Get wallet transactions
    • Get transaction
    • Confirm transaction
  • contract deployment
    • List Contract Deployments
    • Deploy Contract
    • Get Deployment Status
  • contract interactions
    • Get Contract Function
      GET
    • Call Contract Function (Read)
      POST
    • Get Function Documentation
      GET
    • Update Function Documentation
      PUT
    • Execute Contract Function
      POST
    • Submit Documentation Feedback
      POST
    • Get Contract ABI
      GET
    • Import Contract ABI
      POST
    • Call Contract Function By Name (Read)
      GET
    • Execute Contract Function By Name (Write)
      POST
    • List Contract Functions
      GET
    • List Interactions by Contract Address
      GET
    • Search Contracts and Functions
      GET
    • Generate Search Report
      POST
    • Get Interaction by Transaction Hash
      GET
    • Get Contract Interaction by ID
      GET
  • external contracts
    • Call External Contract Function
  • permissions
    • Assign role to organization user
    • Get organization user roles
    • Revoke role from organization user
    • List all permissions
    • List permissions by resource type
    • Assign permission to resource
    • Revoke permission from resource
    • List all roles
    • Create a new role
    • Get a role by ID
    • Update a role
    • Delete a role
    • Set transaction limit
    • Get transaction limits by role
    • Assign permission to user
    • Get user permissions
    • Revoke permission from user
    • Assign role to user
    • Get user roles
    • Revoke role from user
  1. contract interactions

Get Function Documentation

GET
/contracts/functions/{functionID}/documentation
Contract Interactions
Retrieves the stored documentation for a specific contract function.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://transactions.srblabs.io/api/v1/contracts/functions//documentation'
Response Response Example
200 - Example 1
{
    "ai_confidence": 0,
    "ai_generation_date": "string",
    "contract_function_id": 0,
    "created_at": "string",
    "description": "string",
    "error_documentation": "string",
    "id": 0,
    "is_ai_generated": true,
    "last_verified_by": "string",
    "parameter_descriptions": "string",
    "return_descriptions": "string",
    "updated_at": "string",
    "usage_examples": "string"
}

Request

Path Params
functionID
string 
required
Function ID (UUID)

Responses

🟢200OK
application/json
Documentation retrieved successfully
Body
ai_confidence
number 
optional
ai_generation_date
string 
optional
contract_function_id
integer 
optional
created_at
string 
optional
description
string 
optional
error_documentation
string 
optional
id
integer 
optional
is_ai_generated
boolean 
optional
last_verified_by
string 
optional
parameter_descriptions
string 
optional
return_descriptions
string 
optional
updated_at
string 
optional
usage_examples
string 
optional
🟠400Bad Request
🟠401Unauthorized
🟠403Forbidden
🟠404Record Not Found
🔴500Server Error
Modified at 2025-04-30 01:06:55
Previous
Call Contract Function (Read)
Next
Update Function Documentation
Built with