Game Loom
  1. User Registration
Game Loom
  • Game Loom
    • 👋 Welcome to Game Loom
  • Getting started
    • Introduction
    • 👤 Authentication
  • User Registration
    • Introduction
    • Single user registration
      POST
    • Bulk Register Users
      POST
  • Notifications
    • Overview
    • Receiving Event Notifications via Webhooks
    • Get All notifications for specific user
      GET
  • Rewards
    • Overview
    • Points
      • Record user point event
      • Get user points
      • Get Specific user point
    • Levels
      • Record user level event
      • Get user levels
      • Get Specific user level
    • Badges
      • Award badge to user
      • Get user badges
      • Get Specific user badge
  • Challenges (Gamification elements)
    • Introduction
    • Leaderboard
      • Get available leaderboards for user
      • Submit score to a leaderboard
      • Get user's leaderboard participation history
      • Get leaderboard details
      • Get leaderboard ranking
      • Get user's record for a leaderboard
      • Get user's entry history for a leaderboard
    • Survey
      • Overview
      • Get available surveys for user
      • Start a new survey participation
      • Get detailed user participation
      • Get user's survey participation history
      • Abandon survey participation
      • Save individual answer to survey question
      • Submit completed survey
      • Submit Survey with answers (One-Step Submission)
    • Open Challenge
      • Overview
      • Get available open challenges for user
      • Complete an open challenge
      • Get user's open challenge participation history
      • Get user open challenge by ID
    • Schemas
      • Survey Schame
  1. User Registration

Introduction

Adding your users to Game Loom is simple you only need to call a single endpoint.
Game Loom does not require any sensitive user data. The only required field is userKey, which serves as a unique identifier for the user within Game Loom.
You may also provide an optional name property to improve readability within the Game Loom dashboard. Additionally, you can attach any custom data to the user, which can be helpful for future targeting and data analysis.
{
  "userKey": "string",
  "name": "string",
  "userProperties": {
    "gender": 0,
    "birthDate": "YYYY-MM-DD",
    "country": "string",
    "city": "string",
    "segment": "string"
  }
}
Modified at 2025-12-21 22:10:30
Previous
👤 Authentication
Next
Single user registration
Built with