Skip to content

Get Interference Decision

Overview

Retrieve a specific interference decision document by its document identifier.

Endpoint Details

  • Method: GET
  • URL: /api/v1/patent/interferences/decisions/{documentIdentifier}
  • Authentication: Required (API Key)

Library Method

  • get_interference_decision(document_identifier: str) -> InterferenceDecisionIdentifierResponseBag

Parameters

Parameter Type Required Description Example
documentIdentifier string Yes Document identifier (path parameter) document-id-123

Examples

Basic Usage

import asyncio
from uspto_odp.controller.uspto_odp_client import USPTOClient

async def get_decision():
    client = USPTOClient(api_key="your-api-key-here")

    decision = await client.get_interference_decision("document-id")

    print(f"Document Type: {decision.decision.document_type}")
    print(f"Document Name: {decision.decision.document_name}")

    await client.session.close()

asyncio.run(get_decision())