API Configuration

You can manage your QRFY connector programmatically using the Weld REST API. This page covers the key operations specific to QRFY.

Authentication

All API requests require an API key passed via the x-api-key header. You can create API keys in Settings → API Keys inside the Weld app.

curl https://connect.weld.app/connections \
  --header 'x-api-key: YOUR_API_KEY'

Integration ID

When creating connections or syncs for QRFY, use the following integration ID:

ParameterValue
integration_idqrfy

Create a Connection

To connect QRFY via the API, create a connection bridge session:

curl https://connect.weld.app/connection_bridges \
  --request POST \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: YOUR_API_KEY' \
  --data '{
  "integration_id": "qrfy",
  "label": "qrfy-production",
  "redirect_uri": "https://yourapp.com/callback"
}'

Was this page helpful?