Account Lockout Status
### Return lockout status for a list of accounts.
**Available to:** All authenticated users (own accounts)
**Environments:** Demo
**[Rate Limit](/overview/core-concepts/rate-limits):** No endpoint-specific limit
Check whether one or more of your accounts have an active trading lockout. The response includes the locked/unlocked state and the lockout expiration time for each account.
All requested account IDs appear in `statuses`, including unknown or non-existent accounts (which return `locked: false`). The `errors` array is reserved for internal decode failures.
All responses return `HTTP 200`.
**Error Messages**
| `error` | Trigger |
|---------|---------|
| `"Failed to decode account lockouts."` | The account's lockout data couldn't be read |
**Related Endpoints**
- Use [`createAccountLockout`](/api/rest-api-endpoints/users/create-account-lockout) to lock a specific account (traders, own account only)
- Use [`expireAccountLockout`](/api/rest-api-endpoints/users/expire-account-lockout) to unlock a single account early (organization administrators only)
- Use [`expireAllAccountLockouts`](/api/rest-api-endpoints/users/expire-all-account-lockouts) to unlock all accounts for a user (organization administrators only)
Authentication
AuthorizationBearer
Bearer authentication of the form Bearer <token>, where token is your auth token.
Request
This endpoint expects an object.
accountIds
Response
AccountLockoutStatusResponse
statuses
errors

