Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -734,6 +734,27 @@ When importing SAML or OIDC connections that are only available for certain [org
}
```

### TOTP credentials

When importing TOTP credentials, the `totp_url` field needs to be set in your configuration. It follows the spec
[here](https://github.com/google/google-authenticator/wiki/Key-Uri-Format).

```json
{
"schema_id": "preset://email",
"traits": {
"email": "[email protected]"
},
"credentials": {
"totp": {
"config": {
"totp_url": "otpauth://totp/ACME%20Co:[email protected]?secret=HXDMVJECJJWSRB3HWIZR4IFUGFTMXBOZ&issuer=ACME%20Co&algorithm=SHA1&digits=6&period=30"
}
}
}
}
```

## Bulk import identities from other providers

To import multiple identities into Ory Identities, use the
Expand Down
Loading