Documentation
↪ Back to homepage↗ Help Center
  • Getting Started
  • Topics
  • Foundry Platform
    • Overview
    • Authentication
    • Status Codes
    • Errors
    • Timestamps
    • Account
      • Get Account
      • Get Account Balance
      • Get Topup Details
    • Orders
      • Get Orders
      • Create Order
      • Get Order
      • Cancel Order
  • Segment Ledger
    • Ledger
      • Get Ledger
      • Update Ledger
    • Ledger Assets
      • Create Ledger Asset
      • List Ledger Assets
      • Get Ledger Asset
      • Update Ledger Asset
    • Ledger Accounts
      • Create Ledger Account
      • List Ledger Accounts
      • Get Ledger Account
      • Update Ledger Account
    • Ledger Transactions
      • Create Ledger Transaction
      • List Ledger Transactions
      • Get Ledger Transaction
  • Hyperhash
    • Under Development
Powered by GitBook
On this page
  1. Foundry Platform
  2. Account

Get Account

Get Account Details

GET /v1/account

This API will return the account's details.

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <idToken>

Response

{
    "statusCode": 200,
    "statusMessage": "OK",
    "payload": {
        "id": "a70b4887-f564...",
        "clientName": "Senmo Tech...",
        "phoneNumber": "+35700000000",
        "contactEmail": "test@senmo.io",
        "status": "active",
        "createdAt": "2024-10-09T09:14:11.248Z",
        "updatedAt": "2024-10-09T09:14:11.248Z"
    }
}
{
  "error": "Invalid request"
}

PreviousAccountNextGet Account Balance

Last updated 7 months ago