List infringement claims for a DIR
Return the trademark or copyright claims filed against this DIR. Each claim’s status is pending (newly filed; DIR auto-suspended), contested (you have submitted contest evidence; awaiting resolution), or resolved (final). Resolution outcomes: upheld (claim accepted; DIR stays suspended/permanently_rejected), rejected (claim dismissed; DIR restored to verified), modified (partial outcome).
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);
}import os
from telnyx import Telnyx
client = Telnyx(
api_key=os.environ.get("TELNYX_API_KEY"), # This is the default and can be omitted
)
page = client.dir.list_infringement_claims(
dir_id="16635d38-75a6-4481-82e8-69af60e05011",
)
page = page.data[0]
print(page.id)
package main
import (
"context"
"fmt"
"github.com/team-telnyx/telnyx-go"
"github.com/team-telnyx/telnyx-go/option"
)
func main() {
client := telnyx.NewClient(
option.WithAPIKey("My API Key"),
)
page, err := client.Dir.ListInfringementClaims(
context.TODO(),
"16635d38-75a6-4481-82e8-69af60e05011",
telnyx.DirListInfringementClaimsParams{},
)
if err != nil {
panic(err.Error())
}
fmt.Printf("%+v\n", page)
}
package com.telnyx.sdk.example;
import com.telnyx.sdk.client.TelnyxClient;
import com.telnyx.sdk.client.okhttp.TelnyxOkHttpClient;
import com.telnyx.sdk.models.dir.DirListInfringementClaimsPage;
import com.telnyx.sdk.models.dir.DirListInfringementClaimsParams;
public final class Main {
private Main() {}
public static void main(String[] args) {
TelnyxClient client = TelnyxOkHttpClient.fromEnv();
DirListInfringementClaimsPage page = client.dir().listInfringementClaims("16635d38-75a6-4481-82e8-69af60e05011");
}
}require "telnyx"
telnyx = Telnyx::Client.new(api_key: "My API Key")
page = telnyx.dir.list_infringement_claims("16635d38-75a6-4481-82e8-69af60e05011")
puts(page)<?php
require_once dirname(__DIR__) . '/vendor/autoload.php';
use Telnyx\Client;
use Telnyx\Core\Exceptions\APIException;
$client = new Client(apiKey: getenv('TELNYX_API_KEY') ?: 'My API Key');
try {
$page = $client->dir->listInfringementClaims(
'16635d38-75a6-4481-82e8-69af60e05011', pageNumber: 1, pageSize: 20
);
var_dump($page);
} catch (APIException $e) {
echo $e->getMessage();
}telnyx dir list-infringement-claims \
--api-key 'My API Key' \
--dir-id 16635d38-75a6-4481-82e8-69af60e05011curl --request GET \
--url https://api.telnyx.com/v2/dir/{dir_id}/infringement_claims \
--header 'Authorization: Bearer <token>'{
"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
Telnyx API key. Generate one at https://portal.telnyx.com/#/app/api-keys.
Path Parameters
The DIR id. Lowercase UUID.
"16635d38-75a6-4481-82e8-69af60e05011"
Query Parameters
1-based page number. Out-of-range values return an empty page with correct meta.
x >= 11
Items per page. Maximum 250; values above are clamped to 250.
1 <= x <= 25020
Response
Paginated list of claims for this DIR.
Show child attributes
Show child attributes
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.
Show child attributes
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
});
// Automatically fetches more pages as needed.
for await (const dirListInfringementClaimsResponse of client.dir.listInfringementClaims(
'16635d38-75a6-4481-82e8-69af60e05011',
)) {
console.log(dirListInfringementClaimsResponse.id);
}import os
from telnyx import Telnyx
client = Telnyx(
api_key=os.environ.get("TELNYX_API_KEY"), # This is the default and can be omitted
)
page = client.dir.list_infringement_claims(
dir_id="16635d38-75a6-4481-82e8-69af60e05011",
)
page = page.data[0]
print(page.id)
package main
import (
"context"
"fmt"
"github.com/team-telnyx/telnyx-go"
"github.com/team-telnyx/telnyx-go/option"
)
func main() {
client := telnyx.NewClient(
option.WithAPIKey("My API Key"),
)
page, err := client.Dir.ListInfringementClaims(
context.TODO(),
"16635d38-75a6-4481-82e8-69af60e05011",
telnyx.DirListInfringementClaimsParams{},
)
if err != nil {
panic(err.Error())
}
fmt.Printf("%+v\n", page)
}
package com.telnyx.sdk.example;
import com.telnyx.sdk.client.TelnyxClient;
import com.telnyx.sdk.client.okhttp.TelnyxOkHttpClient;
import com.telnyx.sdk.models.dir.DirListInfringementClaimsPage;
import com.telnyx.sdk.models.dir.DirListInfringementClaimsParams;
public final class Main {
private Main() {}
public static void main(String[] args) {
TelnyxClient client = TelnyxOkHttpClient.fromEnv();
DirListInfringementClaimsPage page = client.dir().listInfringementClaims("16635d38-75a6-4481-82e8-69af60e05011");
}
}require "telnyx"
telnyx = Telnyx::Client.new(api_key: "My API Key")
page = telnyx.dir.list_infringement_claims("16635d38-75a6-4481-82e8-69af60e05011")
puts(page)<?php
require_once dirname(__DIR__) . '/vendor/autoload.php';
use Telnyx\Client;
use Telnyx\Core\Exceptions\APIException;
$client = new Client(apiKey: getenv('TELNYX_API_KEY') ?: 'My API Key');
try {
$page = $client->dir->listInfringementClaims(
'16635d38-75a6-4481-82e8-69af60e05011', pageNumber: 1, pageSize: 20
);
var_dump($page);
} catch (APIException $e) {
echo $e->getMessage();
}telnyx dir list-infringement-claims \
--api-key 'My API Key' \
--dir-id 16635d38-75a6-4481-82e8-69af60e05011curl --request GET \
--url https://api.telnyx.com/v2/dir/{dir_id}/infringement_claims \
--header 'Authorization: Bearer <token>'{
"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
}
}