``` const res = await fetchResult(`/pages/assets/upload`, { method: "POST

        const res = await fetchResult(`/pages/assets/upload`, {
                    method: "POST",
                    headers: {
                        "Content-Type": "application/json",
                        Authorization: `Bearer ${jwt}`,
                    },
                    body: JSON.stringify(payload),
                });
Was this page helpful?