Stytch · Example Payload

Stytch Consumer Fingerprint Lookup Example

Lookup the associated fingerprint for the `telemetry_id` returned from the `GetTelemetryID()` function.

AuthenticationIdentityPasswordlessSecurityB2BConnected AppsMCPAI AgentsDeveloper Tools

Stytch Consumer Fingerprint Lookup Example is an example object payload from Stytch, with 5 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

titleendpointdescriptionrequestresponse

Example Payload

Raw ↑
{
  "title": "Lookup",
  "endpoint": "POST /v1/fingerprint/lookup",
  "description": "Lookup the associated fingerprint for the `telemetry_id` returned from the `GetTelemetryID()` function.",
  "request": {
    "method": "POST",
    "path": "/v1/fingerprint/lookup",
    "headers": {
      "Authorization": "Basic <base64(project_id:secret)>",
      "Content-Type": "application/json"
    },
    "body": {
      "telemetry_id": "<telemetry_id>"
    }
  },
  "response": {
    "status": 200,
    "body": {
      "request_id": "example-value",
      "telemetry_id": "example-value",
      "created_at": "example-value",
      "expires_at": "example-value",
      "status_code": 200,
      "raw_signals": {}
    }
  }
}