Skip to content

Instantly share code, notes, and snippets.

export default function(msg: string) {
console.log(msg);
}

Webhook Integration

After a user submits a screening, PointCare will send the screening data to your webhook receiver via an HTTP POST request.

Implementation Steps

  1. Use the specification and sample data below to construct your webhook receiver.

  2. Once your receiver is live, email PointCare development team the required HTTP parameters:

@eezing
eezing / README.md
Last active May 17, 2020 20:24
hello-world

Hello World

@eezing
eezing / learning-resources.md
Last active May 26, 2021 20:59
Learning Resources
@eezing
eezing / index.mjs
Last active October 13, 2022 06:08
Start a PostgreSQL database in Docker
#!/usr/bin/env node
import { execSync } from 'child_process';
import postgres from 'postgres';
const NAME = process.env.NAME;
const VERSION = process.env.VERSION ?? '14';
const RESET = process.env.RESET === 'true';
const PGHOST = process.env.PGHOST ?? 'localhost';