Skip to main content
Every approved character in CA Colombia has a wallet that tracks their in-game currency balance. Use this endpoint to read a character’s current wallet state. If the character does not yet have a wallet record, the server creates one automatically and returns it with a zero balance.
A wallet can only be retrieved for characters with an idStatus of approved. Attempting to access the wallet of a character that is still in draft or pending_approval status will return 403.
You can only retrieve a wallet for your own characters unless your account holds the STAFF permission. Attempting to access another user’s character wallet without that permission returns 403.

Endpoint

Path Parameters

string
required
The Snowflake ID of the user account that owns the character.
string
required
The Snowflake ID of the character whose wallet you want to retrieve.

Response

A successful 200 response returns a wallet object with the following fields:
string
The Snowflake ID of the character this wallet belongs to.
number
The character’s current cash balance in in-game currency units.
string
ISO 8601 timestamp of when the wallet was first created.
string
ISO 8601 timestamp of the last time the wallet was modified.

Example Request

Example Response

Error Responses