Skip to main content
POST
/
api
/
v1
/
zapier
/
actions
/
get_wallet_balance
Get Wallet Balance
curl --request POST \
  --url https://api.ugift.me/api/v1/zapier/actions/get_wallet_balance \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "currency": "GBP"
}
'
{
  "success": true,
  "action": "get_wallet_balance",
  "data": {
    "businessId": "507f1f77bcf86cd799439012",
    "balance": 1500,
    "currency": "GBP",
    "lastUpdated": "2024-01-15T10:30:00.000Z"
  }
}

Authorizations

X-API-Key
string
header
required

Your uGiftme business API key for authentication.

Format: UUID format (e.g., 6b4e22b2-c0a5-4c7a-888a-b38eac20b454) Required: All endpoints require this header Permissions: Must have business-level access with Zapier integration permissions

Example: X-API-Key: 6b4e22b2-c0a5-4c7a-888a-b38eac20b454

Body

application/json
currency
enum<string>

Specific currency to check (optional - returns all if not specified)

Available options:
GBP,
USD,
EUR
Example:

"GBP"

Response

Wallet balance retrieved successfully

success
boolean
required

Indicates if the request was successful

Example:

true

action
string
required

The action that was executed

Example:

"get_wallet_balance"

data
object