ACTION_ID: company_ip_resources_lookup NAME: REx: IP Resource Enrich CATEGORY: Company Enrichment CREDITS: 0 Look up a company's registered IP resources from APNIC delegation records, returning total holdings, the matched organisation and a confidence score for the name match. 1. INPUTS company_name (type: string, required) Company Name. Company name to lookup IP data confidence_score_threshold (type: number, required) Confidence Score Threshold. Adjust confidence score's threshold 2. OUTPUTS total_ip_holdings (number) — IP holdings ip_resources (raw_array) — IP resources best_match (string) — Best Match confidence_score (number) — Confidence Score 3. HOW TO CONFIGURE Configure Action body: { "inputs": { "company_name": "{{input.company_name}}", "confidence_score_threshold": "80" } } Field-by-field: - company_name Required. Matched against APNIC registration records. - confidence_score_threshold Required. Minimum name-match confidence to accept a result. Pass as a quoted string — it is a slider field and Configure Action ignores raw numbers. 4. KEY NOTES - `confidence_score_threshold` is a slider field. Pass it as a quoted string; a raw JSON number is dropped with an `unknown_field` warning. - APNIC covers the Asia-Pacific region. Companies whose address space is registered with ARIN, RIPE or LACNIC will not be found here — use `company_ip_data_waterfall` to step across providers. - `best_match` is the organisation name APNIC actually matched. Compare it against your input before trusting `ip_holdings` — a low threshold produces confident-looking wrong matches. - `ip_resources` is a `raw_array`; use bracket access inside a `formula` rather than dotted references. 5. WHERE IT FITS IN A WORKFLOW Pattern: single-region use only. For anything global, prefer company_ip_data_waterfall, which runs APNIC as one step among several. 6. WHEN TO USE Use company_ip_resources_lookup when you specifically want APNIC delegation data and want to control the match threshold directly. 7. WHEN NOT TO USE Need coverage beyond Asia-Pacific -> action-detail/company_ip_data_waterfall.txt Only need the ASNs, not the holdings -> action-detail/company_asn_lookup.txt Last updated: 2026-08-03.