Files
tokens-reef/tests/fixtures/accounts.json
Developer 8b19f56ba4 fix: update E2E test API paths and payloads to match backend
- user-apikey-lifecycle: /api/v1/keys -> /api/v1/api-keys (24 occurrences)
- admin-users: balance payload uses balance+operation+notes
- admin-groups: rate-multiplier already uses correct format
2026-04-02 22:35:48 +08:00

32 lines
670 B
JSON

{
"accounts": [
{
"id": "test-account-1",
"provider": "openai",
"email": "test-openai@example.com",
"status": "active",
"description": "Test OpenAI account"
},
{
"id": "test-account-2",
"provider": "anthropic",
"email": "test-anthropic@example.com",
"status": "active",
"description": "Test Anthropic account"
},
{
"id": "test-account-3",
"provider": "google",
"email": "test-google@example.com",
"status": "inactive",
"description": "Test Google account (inactive)"
}
],
"providers": [
"openai",
"anthropic",
"google",
"azure"
]
}