- Auth
- API Keys
- Collectables
- Heroes and Characters
- Game
- Asset Candidates
- Assets
- Bones
- Players
- Leaderboards
- Files
- Feature Toggles
- Universal Player Auth
- Merging
- Rarities
- Preferences
- Platforms
- Progressions
- User
- Organisation
- Link Types
- Events/Missions
- Maps
- White Label Login
- Rewards
- Moderation Reports
- Catalogs
- Currency
- Balances
- Messages
- DLC
- Player Segments
- Character Classes
- Subscriptions
- Player Operations
- Roles
- Title Config
- Items
- Entitlements
- Feedback
- Hosts
- Metadata
- Triggers
- Data Migration
- Twitch Drops
- Notifications
Signup
POST
https://api.lootlocker.io/admin/v1/signup
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.lootlocker.io/admin/v1/signup' \
--header 'x-auth-token: ' \
--header 'Content-Type: application/json' \
--data-raw '{
"organisation": "Some Organisation",
"name": "Some One",
"email": "",
"password": ""
}'
Response Response Example
200 - Success
{
"success": true,
"auth_token": "26411c70e737e56494f8f70e6c6d9e30c4303b5b",
"user": {
"id": 10198,
"name": "Some Dude",
"email": "ben+666@lootlocker.com",
"signed_up": 1709648227,
"is_verified": true,
"organisations": [
{
"id": 10486,
"name": "",
"games": [],
"finalized_signup_at": null
}
]
}
}
Request
Header Params
x-auth-token
stringÂ
optional
Default:
{{admin_auth_token}}
Body Params application/json
organisation
stringÂ
required
name
stringÂ
required
email
stringÂ
required
password
stringÂ
required
Examples
Responses
🟢200Success
application/json
Body
object {0}
🟠400Bad Request
Modified at 2025-03-05 13:59:12