Files
Jake Barnby f85bf446e6 Sync docs
2025-08-26 15:40:03 +12:00

440 B

import { Client, Account } from "react-native-appwrite";

const client = new Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject('<YOUR_PROJECT_ID>'); // Your project ID

const account = new Account(client);

const result = await account.createPushTarget({ targetId: '<TARGET_ID>', identifier: '', providerId: '<PROVIDER_ID>' // optional });

console.log(result);