Get an infringement claim
Retrieve a single claim by id. Returns 404 if the claim does not exist or is not against a DIR you own.
GET
JavaScript
JavaScript
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Check out our upcoming events and meetups! View events →
Retrieve a single claim by id. Returns 404 if the claim does not exist or is not against a DIR you own.
import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: process.env['TELNYX_API_KEY'], // This is the default and can be omitted
});
const infringementClaim = await client.infringementClaims.retrieve(
'e379fbc8-cd83-4bef-a280-a0ac9d00dcf8',
);
console.log(infringementClaim.data);{
"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"
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Claim id (lowercase UUID).
"e379fbc8-cd83-4bef-a280-a0ac9d00dcf8"
Claim.
Show child attributes
Was this page helpful?
import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: process.env['TELNYX_API_KEY'], // This is the default and can be omitted
});
const infringementClaim = await client.infringementClaims.retrieve(
'e379fbc8-cd83-4bef-a280-a0ac9d00dcf8',
);
console.log(infringementClaim.data);{
"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"
}
}