Files
formbricks/apps/web/playwright/api/constants.ts
T

16 lines
807 B
TypeScript

export const RESPONSES_API_URL = `/api/v2/management/responses`;
export const SURVEYS_API_URL = `/api/v1/management/surveys`;
export const WEBHOOKS_API_URL = `/api/v2/management/webhooks`;
export const ROLES_API_URL = `/api/v2/roles`;
export const ME_API_URL = `/api/v2/me`;
export const HEALTH_API_URL = `/api/v2/health`;
// Authentication endpoints
export const AUTH_CALLBACK_URL = `/api/auth/callback/credentials`;
export const AUTH_CSRF_URL = `/api/auth/csrf`;
export const TEAMS_API_URL = (organizationId: string) => `/api/v2/organizations/${organizationId}/teams`;
export const WORKSPACE_TEAMS_API_URL = (organizationId: string) =>
`/api/v2/organizations/${organizationId}/workspace-teams`;
export const USERS_API_URL = (organizationId: string) => `/api/v2/organizations/${organizationId}/users`;