The Store entity at YouCan. Returned by the GET /me endpoint.
| Attribute Name | Type | Description |
|---|---|---|
| id | string | Identifier (UUID) |
| store_id | string | Alias for id |
| slug | string | Store URL slug |
| name | string | Store display name |
| is_staff | bool | Whether the store owner is a staff account |
| string | Store owner email | |
| due_amount | string | Total amount due — sum of due_amount and unpaid_invoices_amount |
| balance | float | Current store balance |
| unpaid_invoices_amount | string | Sum of all unpaid invoice amounts |
| currency | object | Store default currency |
| domain | string | Store domain |
| status | int | Store status code |
| status_text | string | Store status label |
| closed_at | int, null | Unix timestamp of scheduled deletion date, or null if no deletion is pending |
| pack_id | string | Identifier of the active subscription plan (UUID) |
| logo | string, null | URL of the store logo |
| first_name | string, null | Owner first name |
| last_name | string, null | Owner last name |
| full_name | string, null | Owner full name |
| phone | string, null | Owner phone number |
| bio | string, null | Store bio |
| website | string, null | Store website URL |
| notices | object | Key-value map of active notices (e.g. gateway warnings) |
| is_active | bool | Whether the store is active |
| is_email_verified | bool | Whether the owner email is verified |
| can_request | bool | Whether the store can request deletion |
| can_cancel | bool | Whether the store can cancel a pending deletion request |
| is_dev | bool | Whether the store is in development mode |
Currency
| Attribute Name | Type | Description |
|---|---|---|
| code | string | ISO 4217 currency code (e.g. "USD") |
| symbol | string | Currency symbol (e.g. "$") |