Send account information to a webhook
We can send account information to a webhook after successful creation. This can be used to automate the process of creating accounts.
Configuration
You can configure and test webhooks in the App Settings.
Discord Webhooks
If you use a Discord webhook, we will automatically change the message to a rich embed with the account information.
Example Payload
This is a example test payload of the webhook:
{ "id": "76561197960287930", "user": { "username": "50ir7p85w3hwn5hpvrns537qiev8", "password": "LLFpcln65i4q7IzGvT9OKXGR5z7ZfX" }, "email": { "password": "01234567890123456789" }, "vault": { "password": "98765432109876543210" }, "metadata": { "createdAt": 1707062237684, "sessionStart": 1707058213055 }, "steamguard": { "account_name": "50ir7p85w3hwn5hpvrns537qiev8", "confirm_type": 3, "deviceId": "android:164725b9-6fa1-4421-b2a3-65f3e119aa5c", "identity_secret": "HO6tmAJQixjiuvRtVf1QsE/Cb7Q=", "revocation_code": "R12345", "secret_1": "bgAvAg+3uOX3YNk0ek52zDaafLI=", "serial_number": "44978635849097481665", "server_time": 1707062237684, "shared_secret": "rj9PlvrSElgxsf54n0Ug6rt8+O4=", "status": 1, "token_gid": "6fe84d092eac3bd1", "uri": "otpauth://totp/Steam:50ir7p85w3hwn5hpvrns537qiev8?secret=VY7U7FX22IJFQMNR7Z4J6RJA5K5XZ6HO&issuer=Steam" }}
id
: The SteamID of the account.user
: The username and password of the account.email
: The email address and email password for the original email of the account.vault
: The email address and email password for the permanent email of the account (optional, will be missing if feature is not enabled).metadata
: Metadata about the account creation.createdAt
is the timestamp of the account creation.sessionStart
is the timestamp of the account creation session start (useful for grouping generating sessions together).steamguard
: The Steam Guard Mobile information of the account.