json

Contoh Penggunaan Tipe Konten

JSON (Default)

try {
  const result = await nexaUi
    .Network({
      type: "v2",
      credensial: "KUNCI-API-ANDA",
      secret: "KUNCI-RAHASIA-ANDA",
      contentType: "application/json" // Ini default, bisa diabaikan
    }).post("users", {
      name: "Budi",
      email: "budi@contoh.com"
    });
  console.log(result);
} catch (error) {
  console.error("Error:", error);
}