Skip to main content
GET
/
dir
/
{dir_id}
/
infringement_claims
JavaScript
import Telnyx from 'telnyx';

const client = new Telnyx({
  apiKey: process.env['TELNYX_API_KEY'], // This is the default and can be omitted
});

// Automatically fetches more pages as needed.
for await (const dirListInfringementClaimsResponse of client.dir.listInfringementClaims(
  '16635d38-75a6-4481-82e8-69af60e05011',
)) {
  console.log(dirListInfringementClaimsResponse.id);
}
{
  "data": [
    {
      "id": "e379fbc8-cd83-4bef-a280-a0ac9d00dcf8",
      "dir_id": "42a3f554-7ce3-44c2-bfe9-6e1afe0d7991",
      "enterprise_id": "7eca8226-8081-4e11-abdc-437b5f53a81f",
      "claim_description": "Alleged infringement on trademark XYZ.",
      "claimant_name": "Test Claimant LLC",
      "claimant_contact": "legal@testclaimant.example.com",
      "claim_date": "2026-04-22T02:12:54Z",
      "resolution_date": "2023-11-07T05:31:56Z",
      "resolution_notes": "<string>",
      "contest_documents": [
        {
          "document_id": "2a7e8337-e803-4057-a4ae-26c40eb0bc6c",
          "document_type": "business_registration",
          "description": "Certificate of incorporation."
        }
      ],
      "contest_history": [
        {
          "notes": "We own the trademark outright; our registration precedes the claimant by three years.",
          "submitted_at": "2026-04-22T02:13:06.629473Z",
          "document_count": 1
        }
      ],
      "dir": {
        "id": "42a3f554-7ce3-44c2-bfe9-6e1afe0d7991",
        "display_name": "Acme Plumbing",
        "enterprise_id": "7eca8226-8081-4e11-abdc-437b5f53a81f"
      },
      "created_at": "2026-04-22T02:12:55.908411Z",
      "updated_at": "2026-04-22T02:12:55.908417Z"
    }
  ],
  "meta": {
    "total_pages": 3,
    "total_results": 42,
    "page_number": 1,
    "page_size": 20
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

dir_id
string<uuid>
required

The DIR id. Lowercase UUID.

Example:

"16635d38-75a6-4481-82e8-69af60e05011"

Query Parameters

page[number]
integer
default:1

1-based page number. Out-of-range values return an empty page with correct meta.

Required range: x >= 1
Example:

1

page[size]
integer
default:20

Items per page. Maximum 250; values above are clamped to 250.

Required range: 1 <= x <= 250
Example:

20

Response

Paginated list of claims for this DIR.

data
object[]
required
meta
object
required

JSON:API pagination metadata returned with every paginated list response. Page numbering is 1-based. page_size reports the number of items actually returned in data for this page; the requested size is taken from the page[size] query parameter.