List apps in the workspace using offset pagination.
Request
Bearer <API_KEY> from Console > Developers > Workspace API Keys.
Query parameters
Response
Total apps in the workspace.
curl -H "Authorization: Bearer sk_workspace_test_..." \
"https://sandbox.api.hopae.com/connect/v1/apps?limit=20&offset=0"
{
"object": "list",
"data": [
{
"client_id": "abc123",
"name": "My App",
"branding": { "name": "My App", "logo": "..." },
"redirect_uris": [],
"verification": { "request_attributes": [], "providers": [] },
"webhook_config": {
"enabled": true,
"events": ["verification.completed", "verification.failed"],
"retry_attempts": 3,
"timeout_seconds": 10
},
"created_at": 1731465600
}
],
"total": 42,
"limit": 20,
"offset": 0
}