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 check exists
      • POSTAdd new transaction check(s)
      • PUTUpdate transaction checks in batch
Contact Us
LogoLogo
API ReferenceTransaction Checks

Check if a transaction check exists

GET
https://api.cable.tech/v2/transaction_check
GET
/v2/transaction_check
$curl -G https://api.cable.tech/v2/transaction_check \
> -H "Authorization: Bearer <token>" \
> -H "Content-Type: application/json" \
> -d check_id=chk_9f8b7c6d5e4a3b2c1d0e
1{
2 "check_id": "chk_9f8b7c6d5e4a3b2c1d0e",
3 "first_seen": "2024-01-10T08:15:30Z",
4 "last_seen": "2024-01-15T09:30:00Z",
5 "organization_id": "org_1234567890abcdef"
6}
Was this page helpful?
Previous

Add new transaction check(s)

Next
Built with

Authentication

AuthorizationBearer

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

Query parameters

check_idstringRequired
The unique identifier of the transaction check

Response

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

Errors

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