We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0aaa2bd + 3f45457 commit c4a8281Copy full SHA for c4a8281
1 file changed
src/routes/contact-us/enterprise/+page.svelte
@@ -31,21 +31,21 @@
31
32
const cloudEmail = loggedIn && $user?.email ? $user.email : undefined;
33
34
- const response = await fetch(`${PUBLIC_GROWTH_ENDPOINT}/feedback/sales/enterprise`, {
+ const response = await fetch(`${PUBLIC_GROWTH_ENDPOINT}/conversations/enterprises`, {
35
method: 'POST',
36
headers: {
37
'Content-Type': 'application/json'
38
},
39
body: JSON.stringify({
40
+ firstName,
41
+ lastName,
42
email,
- subject: companyName,
- cloudEmail,
43
+ message: useCase,
44
companyName,
45
companySize,
46
companyWebsite,
- firstName,
47
- lastName,
48
- message: useCase,
+ cloudEmail,
+ platform: 'appwrite',
49
...getReferrerAndUtmSource()
50
})
51
});
0 commit comments