v1

latestOpenAPI 3.0.02026-07-14866188.2 KB
Account
Interledger

Get Public profile of a Chimoney User.

post/v0.2.4/accounts/public-profile

Request body

userIDstring

User ID of Chimoney user. Must provide one of userID, linkCode, p_id, or interledgerWalletAddress.

p_idstring

User Public profile ID of Chimoney user. Must provide one of userID, linkCode, p_id, or interledgerWalletAddress.

linkCodestring

NFC Link Code. Must provide one of userID, linkCode, p_id, or interledgerWalletAddress.

interledgerWalletAddressstring

Interledger wallet address (Payment Pointer) in format $ilp.chimoney.io/username or https://ilp.chimoney.io/username. Must provide one of userID, linkCode, p_id, or interledgerWalletAddress.

Example request

{
  "interledgerWalletAddress": "$ilp.chimoney.io/alice"
}

Response

Success.

statusstring

Status of the request.

messagestring

Success message.

Example response

{
  "status": "success",
  "message": "User profile retrieved successfully",
  "data": {
    "accountSecondCurrencies": [],
    "verification": {
      "status": "completed"
    },
    "paymentData": {
      "interledgerWalletAddress": "https://ilp-sandbox.chimoney.com/4252496"
    }
  }
}