Lookups
Last updated
Was this helpful?
Was this helpful?
curl -X GET "https://api.chargebackstop.com/v1/lookups/?organisation_id=org_xyz456&lookup_status=SUCCEEDED&sort=-created_at&limit=20&offset=0" \
-H "Authorization: Bearer <api_key>"{
"items": [
{
"id": "lkup_abc123",
"organisation_id": "org_xyz456",
"enrollment_id": "enrl_def456",
"type": "ETHOCA_CONSUMER_CLARITY",
"parent_lookup_id": null,
"lookup_status": "SUCCEEDED",
"deflection_status": "NOT_ATTEMPTED",
"transaction_card_bin": "424242",
"transaction_card_last4": "4242",
"transaction_arn": "74027012345678901234567",
"transaction_auth_code": "AUTH123",
"transaction_amount": 4999,
"transaction_currency": "USD",
"transaction_date": "2026-02-10T10:30:00Z",
"transaction_statement_descriptor": "EXAMPLE STORE",
"transaction_network_id": "network_123",
"integration_id": "int_abc123",
"integration_transaction_id": "txn_123",
"created_at": "2026-02-11T10:30:00Z",
"updated_at": "2026-02-11T10:30:00Z",
"links": [
{
"rel": "self",
"uri": "/v1/lookups/lkup_abc123"
}
]
}
],
"count": 1
}curl -X GET "https://api.chargebackstop.com/v1/lookups/lkup_abc123" \
-H "Authorization: Bearer <api_key>"{
"id": "lkup_abc123",
"organisation_id": "org_xyz456",
"enrollment_id": "enrl_def456",
"type": "ETHOCA_CONSUMER_CLARITY",
"parent_lookup_id": null,
"lookup_status": "SUCCEEDED",
"deflection_status": "NOT_ATTEMPTED",
"transaction_card_bin": "424242",
"transaction_card_last4": "4242",
"transaction_arn": "74027012345678901234567",
"transaction_auth_code": "AUTH123",
"transaction_amount": 4999,
"transaction_currency": "USD",
"transaction_date": "2026-02-10T10:30:00Z",
"transaction_statement_descriptor": "EXAMPLE STORE",
"transaction_network_id": "network_123",
"integration_id": "int_abc123",
"integration_transaction_id": "txn_123",
"created_at": "2026-02-11T10:30:00Z",
"updated_at": "2026-02-11T10:30:00Z",
"links": [
{
"rel": "self",
"uri": "/v1/lookups/lkup_abc123"
}
]
}{
"errors": [
{
"code": "UNAUTHORISED",
"message": "Unauthorised"
}
]
}{
"errors": [
{
"code": "FORBIDDEN",
"message": "Forbidden"
}
]
}{
"errors": [
{
"code": "NOT_FOUND",
"message": "Not found"
}
]
}{
"errors": [
{
"code": "INVALID_DATE_RANGE",
"message": "created_at_gte cannot be greater than created_at_lte"
}
]
}