Glossary

Plain definitions of the handful of technical words you might run into while setting up, each one line, no assumed background.

HTTP request

The basic way one piece of software asks another to do something over the internet. Every page load, every app action, and every ping FlowProofs receives is one of these.

POST

One "method," or type, of HTTP request: the one used for sending data to create or record something (as opposed to just asking for information back). Every ping to FlowProofs is a POST.

Webhook

A URL that a tool calls automatically when something happens, instead of you having to check back manually. FlowProofs's ping is a webhook call your system makes to FlowProofs.

Endpoint

The specific URL a request is sent to. FlowProofs has one ingestion endpoint for all events; which side ("source" or "destination") it belongs to is named inside the request itself.

Body

The actual content of a request. For a FlowProofs ping, a small block of structured data (JSON) naming the record, like { "external_id": "call_123" }.

API key

A secret value that proves a request is allowed to act on your account, used in place of a username and password for machine-to-machine calls. Shown once when created, so copy it somewhere safe, since FlowProofs only ever stores a scrambled version afterward.

JSON

A plain, widely-used text format for structured data, the { "key": "value" } shape you'll see in every ping body and code example on this site.