Back

Getting Started

Create and send your first WalletWerk wallet card

Getting Started

This guide will walk you through creating your first wallet card using the WalletWerk API.

Step 1: Create an API Key

  • Log in to your dashboard
  • Navigate to the Developer tab
  • Click Create API Key
  • Select the scopes you need (start with campaigns:read and campaigns:write)
  • Copy and securely store your API key
    You'll only see it once!

Keep your API key secure. Never commit it to version control or expose it in client-side code.

Step 2: Make Your First Request

Test your API key by listing your campaigns:

GET
/campaigns
Required scope: campaigns:read

List all campaigns for your organization.

Step 3: Create Your First Campaign

Now let's create a campaign:

POST
/campaigns
Required scope: campaigns:write

Create a new campaign for your wallet card program.

Request Parameters

ParameterTypeRequiredDescription
namestringYesCampaign name (e.g., "Summer Concert 2025")
typestringYesCampaign type: event, membership, coupon, access, or generic
datestringNoEvent date (ISO 8601 format)
startTimestringNoEvent start time (HH:mm format)

Next Steps