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

Bulk Register Users

POST
api/v1/registrations/users/bulk

Bulk User Registration#

Registers multiple users in a single request. Optimized for high-volume user imports.

Request Body Schema#

Each request accepts an array of users with the following structure:

User Object#

FieldTypeRequiredDescription
userKeystringâś… YesUnique identifier for the user
namestring❌ NoUser’s display name
userPropertiesobjectâś… YesAdditional user information

userProperties Object#

FieldTypeDescription
genderinteger0 = Female, 1 = Male
birthDatestringISO 8601 date format (YYYY-MM-DD)
countrystringUser’s country
citystringUser’s city
segmentstringBusiness-defined user segment (e.g. Premium, Standard)

Response#

200 OK — Users registered successfully
No response body (optimized for performance)

Performance & Limits#

Suitable for importing 10,000+ users
Recommended maximum: 10,000 users per request

Best Practices#

Ensure all userKey values are unique within the batch
All fields inside userProperties are optional
Use ISO-formatted dates for birthDate

Request

Header Params

Body Params application/jsonRequired

Examples

Responses

🟢200
This response does not have a body.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'api/v1/registrations/users/bulk' \
--header 'x-api-key: {{api-key}}' \
--header 'Content-Type: application/json' \
--data-raw '[
    {
        "userKey": "{{$string.uuid}}",
        "name": "{{$person.fullName}}",
        "userProperties": {
            "gender": 1,
            "birthDate": "{{$date.isoTimestamp}}",
            "country": "{{$location.countryCode}}",
            "city": "{{$location.city}}",
            "segment": "Premium"
        }
    },
    {
        "userKey": "{{$string.uuid}}",
        "name": "{{$person.fullName}}",
        "userProperties": {
            "gender": 0,
            "birthDate": "{{$date.isoTimestamp}}",
            "country": "{{$location.countryCode}}",
            "city": "{{$location.city}}",
            "segment": "VIP"
        }
    }
]'
Modified at 2025-12-23 15:35:55
Previous
Single user registration
Next
Overview
Built with