Beyond Identity · Example Payload

Beyond Identity Credential Binding Job Example

Example request body for creating a credential binding job to enroll an identity with a passkey

AuthenticationPasswordlessZero TrustIdentityPasskeysMFADevice SecurityOAuth 2.0OIDCSCIM

Beyond Identity Credential Binding Job Example is an example object payload from Beyond Identity, with 5 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

descriptionmethodpathrequestresponse

Example Payload

Raw ↑
{
  "description": "Example request body for creating a credential binding job to enroll an identity with a passkey",
  "method": "POST",
  "path": "/v1/tenants/{tenant_id}/realms/{realm_id}/identities/{identity_id}/credential-binding-jobs",
  "request": {
    "job": {
      "delivery_method": "EMAIL",
      "post_binding_redirect_uri": "https://myapp.example.com/callback",
      "authenticator_config_id": "67890abcdef12345"
    }
  },
  "response": {
    "credential_binding_job": {
      "id": "abc123def456ghi7",
      "realm_id": "8f5bec58229e6f29",
      "tenant_id": "0001f1f460b1ace6",
      "identity_id": "e372db224c06e850",
      "delivery_method": "EMAIL",
      "state": "PENDING",
      "post_binding_redirect_uri": "https://myapp.example.com/callback",
      "authenticator_config_id": "67890abcdef12345",
      "expire_time": "2024-01-16T10:30:00.000Z",
      "create_time": "2024-01-15T10:30:00.000Z",
      "update_time": "2024-01-15T10:30:00.000Z"
    }
  }
}