Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion code-examples/curl/search/advanced-result.json
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@
"out_of": 2163,
"page": 1,
"request_params": {
"collection_name": "identities-e70f3b9e-f343-40e6-89f1-de24e459722e",
"collection_name": "identities",
"per_page": 5,
"q": "*"
},
Expand Down
10 changes: 5 additions & 5 deletions code-examples/curl/search/model.jsonc
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
{
"id": "d52d5bdb-74b4-4aa0-b706-d1e9c853bd81", // the identity ID
"organization_id": "org-id-123", // optional, facet
"external_id": "external-id-123", // optional
"created_at": 1725031437, // UNIX timestamp, facet
"updated_at": 1758115258, // UNIX timestamp, facet
"external_id": "external-id-123", // optional, indexed
"created_at": 1725031437, // UNIX timestamp, facet, sortable
"updated_at": 1758115258, // UNIX timestamp, facet, sortable
"state": "active", // "inactive", "deleted", facet
"schema_id": "preset://email", // identity schema ID, facet
"available_aal": "aal1", // "aal2" etc, facet
"metadata_admin": {
"role": "user" // custom admin metadata, indexed, search via `query_by=metadata_admin.role`
"role": "user" // custom admin metadata, indexed, facet, search via `query_by=metadata_admin.role`
},
"metadata_public": {
"foo": "bar" // custom public metadata, indexed, search via `query_by=metadata_public.foo`
"foo": "bar" // custom public metadata, indexed, facet, search via `query_by=metadata_public.foo`
},
"traits": {
"email": "wgiho@agpaa.com" // traits based on identity schema, indexed, search via `query_by=traits.email`
Expand Down
Loading