mirror of
https://github.com/formbricks/formbricks.git
synced 2026-01-29 10:46:12 -06:00
Co-authored-by: Dhruwang <dhruwangjariwala18@gmail.com> Co-authored-by: pandeymangg <anshuman.pandey9999@gmail.com>
11 lines
612 B
TypeScript
11 lines
612 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 TEAMS_API_URL = (organizationId: string) => `/api/v2/organizations/${organizationId}/teams`;
|
|
export const PROJECT_TEAMS_API_URL = (organizationId: string) =>
|
|
`/api/v2/organizations/${organizationId}/project-teams`;
|
|
export const USERS_API_URL = (organizationId: string) => `/api/v2/organizations/${organizationId}/users`;
|