Skip to main content

Overview

If a third party believes your DIR’s display name, logo, or content infringes on a protected right (trademark, copyright, etc.), they can file an infringement claim through Telnyx. Claims are filed and adjudicated by Telnyx, you cannot create a claim through this API, but you can read and contest claims filed against your own DIRs. While a claim is pending or contested:
  • The DIR is moved to suspended.
  • Branded calling pauses for the affected DIR.
  • You cannot add phone numbers to the DIR (returns 400).
  • You cannot delete the DIR (returns 409, blocked by the no_active_claims precondition).
  • You cannot re-submit the DIR with POST /submit (returns 409 with the open claim IDs, blocked by the no_active_claims precondition).
  • To revise content while the claim is open, call PUT /v2/dir/{dir_id}/infringement_update on the suspended DIR (see “Fix-and-resubmit” below). This is the only way to re-vet during an open claim.

Claim lifecycle

API endpoints

Listing claims on a DIR

Getting a single claim

Contesting a claim

You can submit a contest more than once, the first submission moves the claim from pending to contested; later submissions append additional notes and documents to the same claim without changing status.
Contesting a resolved claim returns 400.

Fix-and-resubmit a suspended DIR

While an infringement claim is open (pending or contested), Telnyx may pre-emptively move your DIR to suspended to halt branded calling. To recover without waiting for the claim to be resolved, use the dedicated PUT /v2/dir/{dir_id}/infringement_update endpoint to atomically apply your content fix and re-submit for vetting in one call. This endpoint requires an active (unresolved) claim and a suspended DIR (see “After the claim resolves” below).
Requirements:
  • The DIR must have an active (unresolved) infringement claim.
  • The DIR must be in suspended status.
  • All four certifications (certify_no_infringement, certify_brand_is_accurate, certify_no_shaft_content, certify_ip_ownership) must be supplied as true.
  • infringement_resolution_notes is required (10-500 chars), explain how the edits resolve the claim.
The content fields (display_name, logo_url, call_reasons) are all optional; send only the ones you’re changing. You can also attach supporting documents (up to 20, append-only) as proof that backs your fix, for example authorization or licensing paperwork. Each entry references a document_id from the Telnyx Documents API plus a document_type, and re-attaching a document already on the DIR is rejected. See the Infringement Claims guide for the full field table. After the update, the DIR moves to submitted and goes through vetting again, even though the claim is still open. If the new content passes vetting, the DIR returns to verified and the claim can be resolved. If vetting rejects the changes, the DIR returns to suspended and you can update again. You can submit infringement_update multiple times while the claim is open.
Why the standard PATCH + POST /submit flow doesn’t work here: POST /submit is gated by the FSM’s no_active_claims precondition and returns 409 while a claim is still pending or contested. PUT /infringement_update is the only customer-callable endpoint that can move a suspended-with-open-claim DIR back into vetting; it bypasses the no_active_claims gate by design. Use PATCH + POST /submit only after Telnyx has marked the claim resolved with resolution = modified. resolution = rejected auto-restores the DIR and resolution = upheld is terminal, neither requires a customer PATCH + /submit.

After the claim resolves

  • resolution = rejected: your DIR is automatically restored to verified; no action required. Branded calling resumes.
  • resolution = upheld: your DIR is permanently_rejected and cannot be reused. To continue branded calling, create a new DIR with corrected content; you may reuse the same enterprise.
  • resolution = modified: read resolution_notes for the required content edits, then PATCH the DIR and POST /submit (the no_active_claims gate is now open because the claim is resolved).