Import the contract
Three steps take you from the spec URL to a validated key.1
Import the OpenAPI URL
In Postman, Import takes a Link:The option that creates a collection from the specification produces a collection holding
only the public
/v2 operations.2
Set collection authorization
The collection’s authorization settings take Bearer Token. A Postman variable holds
the key, which keeps it out of individual requests:The token value then reads
{{reconify_api_key}}, marked secret wherever your workspace
supports that control.3
Validate the key
GET /v2/events with limit=1 is the test, because GET /v2 and GET /v2/health answer
without checking credentials.200confirms the key reads data in its organization.401means the key is missing or invalid.403means the key is valid but lacks the required access.
Before you run a write request
Reconify has no sandbox or test mode, andPOST /v2/events writes immutable evidence to
the organization behind the key. Send events covers what a safe
first request looks like.
When the public contract changes, a re-import of the canonical artifact picks it up. The
versioned manifest carries checksums and version locations for
automated consumers.