For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Contact Us
Knowledge BaseProduct UpdatesAPI Documentation
Knowledge BaseProduct UpdatesAPI Documentation
    • Getting Started
  • API Reference
      • GETCheck if a transaction exists
      • POSTAdd a new transaction
      • PUTUpdate an existing transaction
      • DELSubmit a deletion request for a transaction and any related data
      • POSTAdd transactions in batch
      • PUTUpdate transactions in batch
Contact Us
LogoLogo
API ReferenceTransactions

Check if a transaction exists

GET
https://api.cable.tech/v2/transaction
GET
/v2/transaction
$curl -G https://api.cable.tech/v2/transaction \
> -H "Authorization: Bearer <token>" \
> -H "Content-Type: application/json" \
> -d tx_id=a3f5c9d2-7b4e-4f1a-9c3e-2d8b7f6a1e4c
1{
2 "tx_id": "a3f5c9d2-7b4e-4f1a-9c3e-2d8b7f6a1e4c",
3 "first_seen": "2024-01-15T09:30:00Z",
4 "last_seen": "2024-01-15T10:15:00Z",
5 "organization_id": "org_987654321"
6}
Was this page helpful?
Previous

Add a new transaction

Next
Built with

Authentication

AuthorizationBearer

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

Query parameters

tx_idstringRequired
The unique identifier of the transaction

Response

Transaction exists
tx_idstring
The unique identifier of the transaction
first_seendatetime
This represents the earliest timestamp associated with the transaction
last_seendatetime
This represents the latest timestamp associated with the transaction
organization_idstring
The organization ID for which the transaction was found

Errors

401
Unauthorized Error
404
Not Found Error
429
Too Many Requests Error
500
Internal Server Error