import { Novu } from '@novu/node';
const novu = new Novu('<NOVU_API_KEY>');
await novu.changes.getCount();
use Novu\SDK\Novu;
$novu = new Novu(<NOVU_API_KEY>);
$novu->getChangesCount()->toArray();
require 'novu'
client = Novu::Client.new('<NOVU_API_KEY>')
client.count_changes()
from novu.api import ChangeApi
url = "https://api.novu.co"
api_key = "<NOVU_API_KEY>"
novu = ChangeApi(url, api_key).count(
)
import co.novu.sdk.Novu;
public class Main {
public static void main(String[] args) {
String apiKey = "<NOVU_API_KEY>";
Novu novu = new Novu(apiKey);
novu.countChanges();
}
}
{
data: 0
}
Changes
Get changes count
GET
/
v1
/
changes
/
count
import { Novu } from '@novu/node';
const novu = new Novu('<NOVU_API_KEY>');
await novu.changes.getCount();
use Novu\SDK\Novu;
$novu = new Novu(<NOVU_API_KEY>);
$novu->getChangesCount()->toArray();
require 'novu'
client = Novu::Client.new('<NOVU_API_KEY>')
client.count_changes()
from novu.api import ChangeApi
url = "https://api.novu.co"
api_key = "<NOVU_API_KEY>"
novu = ChangeApi(url, api_key).count(
)
import co.novu.sdk.Novu;
public class Main {
public static void main(String[] args) {
String apiKey = "<NOVU_API_KEY>";
Novu novu = new Novu(apiKey);
novu.countChanges();
}
}
{
data: 0
}
Enter your API key in the
Authorization field like the example shown below:E.g ApiKey 18d2e625f05d80eimport { Novu } from '@novu/node';
const novu = new Novu('<NOVU_API_KEY>');
await novu.changes.getCount();
use Novu\SDK\Novu;
$novu = new Novu(<NOVU_API_KEY>);
$novu->getChangesCount()->toArray();
require 'novu'
client = Novu::Client.new('<NOVU_API_KEY>')
client.count_changes()
from novu.api import ChangeApi
url = "https://api.novu.co"
api_key = "<NOVU_API_KEY>"
novu = ChangeApi(url, api_key).count(
)
import co.novu.sdk.Novu;
public class Main {
public static void main(String[] args) {
String apiKey = "<NOVU_API_KEY>";
Novu novu = new Novu(apiKey);
novu.countChanges();
}
}
{
data: 0
}
Was this page helpful?
⌘I