Infringement Claims
Update a DIR to resolve an infringement concern
Push a fix for a DIR that is suspended with an open infringement claim back into vetting. POST /dir/{dir_id}/submit is blocked while a claim is open, so this is the customer-callable path to update the DIR's content and re-certify before Telnyx adjudicates the claim. All four certification booleans must be true. Optional content fields (display_name, logo_url, call_reasons, documents) update the DIR; documents are append-only.
put/dir/{dir_id}/infringement_update
Path parameters
dir_idstring uuid required
Example:16635d38-75a6-4481-82e8-69af60e05011
The DIR id. Lowercase UUID.
Request body
Example request
{
"documents": [
{
"description": "Certificate of incorporation.",
"document_id": "2a7e8337-e803-4057-a4ae-26c40eb0bc6c",
"document_type": "business_registration"
}
]
}Response
DIR updated and re-submitted for vetting.
Example response
{
"data": {
"authorizer_email": "sam@acmeplumbing.example.com",
"authorizer_name": "Sam Owner",
"call_reasons": [
{
"created_at": "2026-04-26T18:06:51.940749Z",
"reason": "Appointment reminders"
}
],
"certify_brand_is_accurate": true,
"certify_ip_ownership": true,
"certify_no_shaft_content": true,
"created_at": "2026-04-26T18:06:51.940749Z",
"display_name": "Acme Plumbing",
"documents": [
{
"description": "Certificate of incorporation.",
"document_id": "2a7e8337-e803-4057-a4ae-26c40eb0bc6c",
"document_type": "business_registration"
}
],
"enterprise_id": "4a6192a4-573d-446d-b3ce-aff9117272a6",
"expiring_at": "2027-04-26T18:07:29.537981Z",
"id": "16635d38-75a6-4481-82e8-69af60e05011",
"logo_url": "https://acmeplumbing.example.com/logo-256.bmp",
"rejection_reasons": [
{
"code": "documentation_incomplete",
"detail": "Provided documents do not establish business identity.",
"message": "Please re-upload a clearer scan of the certificate.",
"title": "Documentation incomplete"
}
],
"submitted_at": "2026-04-26T18:07:03.716411Z",
"updated_at": "2026-04-26T18:09:24.785211Z",
"verified_at": "2026-04-26T18:07:29.537926Z"
}
}