Skip to content

Getting Started

Welcome to WalletPass.ai! This guide will help you get started with the platform.

Overview

WalletPass.ai is a cloud-based SaaS platform for creating and managing digital wallet passes. You don't need to install anything locally - everything runs in the cloud.

Account Types

There are two main account types:

  1. Tenant Account - For businesses that want to create and manage wallet passes
  2. Admin Account - For partners, resellers, integrators, and developers who need to manage multiple tenants

Getting a Tenant Account

To get started as a tenant:

  1. Contact Sales - Reach out to our sales team to set up your tenant account

  2. Receive Credentials - You'll receive:

    • Your tenant ID
    • API keys for authentication
    • Access to the admin dashboard (if applicable)
  3. Start Using the API - Once you have your credentials, you can start using the API to:

    • Generate wallet passes
    • Manage members
    • Track points and tiers
    • Send passes via SMS

First Steps as a Tenant

  1. Get Your API Key - Your API key is your primary authentication method
  2. Read the API Reference - Check out the API Reference for all available endpoints
  3. Try the Examples - See Examples for common use cases
  4. Generate Your First Pass - Follow the Pass Generation Guide

Getting an Admin Account

Admin accounts are for:

  • Partners - Companies that resell WalletPass.ai services
  • Integrators - Developers building integrations
  • Developers - Building custom solutions

Requesting an Admin Account

  1. Contact Support - Reach out to our support team to request admin access

  2. Provide Details - Include:

    • Your company name
    • Use case (reseller, integrator, developer)
    • Expected number of tenants you'll manage
  3. Receive Admin Credentials - You'll receive:

    • Admin bearer token for authentication
    • Access to tenant management endpoints
    • Documentation for tenant creation

Admin Capabilities

As an admin, you can:

  • Create Tenants - Onboard new customers
  • Manage Tenants - View and manage tenant accounts
  • Monitor Usage - Track tenant activity
  • Access All APIs - Use both admin and tenant APIs

See the Admin System Guide for detailed information on admin features.

API Authentication

Tenant API Keys

Tenant accounts use API keys for authentication:

bash
curl -X GET "https://member.walletpass.ai/v1/members" \
  -H "X-API-Key: your-api-key-here"

Admin Bearer Tokens

Admin accounts use bearer tokens:

bash
curl -X POST "https://tenant.walletpass.ai/v1/admin/tenants" \
  -H "Authorization: Bearer your-bearer-token-here" \
  -H "Content-Type: application/json" \
  -d '{"name": "New Tenant"}'

Next Steps

Support

Need help? Contact our support team:

WalletPass.ai Documentation