5. Data Debits
Last updated
Was this helpful?
Was this helpful?
// In custom options you can specify the following parameters: "ordering", "orderBy", "take", "skip"
const options = {
ordering: "descending",
orderBy: "name"
};
try {
const result = await hat.dataDebits().getAll(options);
if (result.parsedBody) {
// result.parsedBody contains an array of Data Debits.
}
} catch (error) {
// Failed to fetch Data Debits.
}try {
const result = await hat.dataDebits().getById("your-data-debit-id");
if (result.parsedBody) {
// result.parsedBody contains the data debit.
}
} catch (e) {
// Failed to get Data Debit by ID...
}interface DataDebitValues<T> {
bundle: { [endpoint: string]: Array<HatRecord<T>> };
}try {
const result = await hat.dataDebits().getDataDebitValues("your-data-debit-id");
if (result.parsedBody) {
// result.parsedBody contains the bundle.
}
} catch (error) {
// Failed to get Data Debit values...
}