Alfred Integration Documentation
  • 🌐Welcome
    • Getting Started
    • alfred Overview
      • Authentication
      • Core Concepts & Use Cases
      • System Resource Names
      • Error & Status Codes
      • Required Documents for KYC by Country
      • Example Workflow Execution
    • Postman Collection
  • 🔌PENNY API General Integration
    • Penny API - Operations
      • Account Information + Get uuid Initial Transaction
      • KYC Lite + Get Access Token
      • KYC Full
      • Payment Method + Get Process Token
      • Add Bank or Update Bank
      • Submit Transaction
      • {URL-Customer-Webhook}
      • Approval Invoice (Pay Out Only)
    • Penny API - Reports
      • Consult Quote
      • Consult Payment Wallet
      • Consult All Invoices
      • Consult Individual Invoice by Invoice ID
      • Consult transactions by User's Wallet
  • 🖱️Stellar Blockchain Integration
    • Stellar API Integration - Operations
      • Auth (Get)
      • Auth (Post)
      • (Stellar) My Info - Get Account info & uuid Initial Transaction
      • KYC Lite + Get Access Token
      • KYC Full
      • Payment Method + Get Process Token
      • Add Bank or Update Bank
      • Submit Transaction
      • {URL-Customer-Webhook}
      • Approval Invoice (Pay Out Only)
    • Stellar API Integration - Reports
      • Consult All Invoices
      • Consult Payment Wallet
      • Consult Individual Invoice by Invoice ID
      • Consult transactions by User's Wallet
  • 🎒Educational Content
    • Step-by-Step Videos
      • Getting Started
      • API Integration
      • Pay Out Requirements by Country
        • 🇲🇽Mexico
        • 🇦🇷Argentina
        • 🇧🇷Brazil
Powered by GitBook
On this page
  1. Stellar Blockchain Integration
  2. Stellar API Integration - Operations

(Stellar) My Info - Get Account info & uuid Initial Transaction

We obtain the company registration data & User ID session in our alfredpay ecosystem.


Description:

This endpoint is designed to fetch company registration data and a unique session ID (uid) within the AlfredPay Ecosystem. It primarily aids in obtaining business details and initiating transactions, either for depositing (in) or withdrawing (out) funds.

Mode:

POST

Node:

/third-party-service/stellar/my-info

POST /third-party-service/stellar/my-info

We obtain the company registration data & uid session in the alfredpay ecosystem

Headers

Name
Type
Description

api-key*

String

api-secret*

String

Request Body

Name
Type
Description

“type” *

“in”

other value can be “out” where you want to use offramp

"token"*

"eyJhbGciOiJIUzI1NiJ9.eyJqdGkiOiJhZWJlM2Y5NmVhYjU0NWMzNTQxYzY1MjIwMGE3MjQ3YzRjMjI2ZjEyMzBmZTRlMDNkNmE1YTRmMTg5MTk1YzQwIiwiaXNzIjoiaHR0cHM6Ly9qYW5jaG9yLmFsZnJlZHBheS5pbzo0NDMvYXV0aCIsInN1YiI6IkdESkE0S0w0MkJHWTc2N0ZWTUtHVUdVRkY0WFBMSEU2N0JISE4yTUxYTVZLUFNGWDVLRVdZN0VLIiwiaWF0IjoxNzAwMTQ4Mzk5LCJleHAiOjE3MDAyMzQ3OTksImhvbWVfZG9tYWluIjoiamFuY2hvci5hbGZyZWRwYXkuaW86NDQzIn0.9rXxj6y_emjRLuEVqs9sX0L5bWWhjQGMu5t96NiQ3Oc"

This token is generated after the transaction is signed.

// 
{
    "statusCode": 202,
    "message": "MyInfo",
    "data": {
        "initial_transaction": "31ec196c-ed1b-4215-819b-2e10b2954f1f"
    }
}

Considerations:

The unique identifier (uid) is within the response under the initial-transaction . This ID is crucial for tracking and managing the transaction within the AlfredPay Ecosystem.

If you are trying to integrate a non custodial wallet, input the user's public key under 'user'.

Last updated 1 year ago

🖱️