BizKitHub
DocsAPI ReferenceContact/bff/contact/detail-login-attempts
getContactAdmin BFF

/bff/contact/detail-login-attempts

Returns every recorded sign-in attempt for the contact, including successful and blocked ones, with the risk score computed at the time of the attempt and full GeoIP/threat context (IP, hostname, city, country, ASN, ISP, mobile/proxy/hosting/tor flags). Same shape as /bff/account/audit-login-attempts so the admin can render both with a single grid component.

ContactgetBffContactDetail-login-attempts

Parameters

1 query

1 total
Query · 1
customerIdstringRequired

Contact external ID.

Request

GET /bff/contact/detail-login-attempts

get
curl -X GET "https://api.bizkithub.com/bff/contact/detail-login-attempts?customerId=abc123def456ghij" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY"

Response

JSON payload

{
  "itemCount": 0,
  "items": [
    {
      "id": "example_id",
      "committed": false,
      "riskScore": 0,
      "insertedDate": "example_insertedDate",
      "relativeDate": "example_relativeDate",
      "ip": "example_ip",
      "hostname": "example_hostname",
      "city": "example_city",
      "country": "example_country",
      "countryRegion": "example_countryRegion",
      "asn": "example_asn",
      "asnOrganization": "example_asnOrganization",
      "isp": "example_isp",
      "mobile": false,
      "proxy": false,
      "hosting": false,
      "tor": false
    }
  ]
}

All response codes

1 status code documented

Need an API key?

All BizKitHub API endpoints require authentication via API key.

Get API Key