FindByEmail

Admin API to retrieve User object via email.

rpc FindByEmail

user_api.v1.FindByEmail

Admin API to retrieve User object via email.

requests FindByEmailRequest

user_api.v1.FindByEmailRequest

FieldTypeDescription
emailstringEmail address of the user.
resp, _ := userApiService.FindByEmail(ctx, &v1.FindByEmailRequest{
  Email: "[email protected]",
})
fmt.Println(resp)
const findbyemailrequest = new FindByEmailRequest();
findbyemailrequest.setEmail("[email protected]");

service.findByEmail(findbyemailrequest, (err, value:FindByEmailResponse|null) => {
    const resp = JSON.stringify(err ? err : value);
    console.log("received ", resp);
})
using System;
using Grpc.Core;
using UserApi.V1;

namespace main
{
  class Program
  {
    static void Main(string[] args)
    {
      Channel channel = new Channel("user-mgmt.YOUR_SANDBOX_ID.knoxnetworks.io:443", ChannelCredentials.Insecure); 
      var client = new UserApiService.UserApiServiceClient(channel); 
      var headers = new Metadata();
      var findByEmailRequest = new FindByEmailRequest{
        Email = "[email protected]",
      };
      var reply = client.FindByEmail(findByEmailRequest, headers);
      Console.WriteLine("Response: " + reply);
      channel.ShutdownAsync().Wait();
    }
  }
}
package demo;

import io.grpc.Channel;
import io.grpc.ManagedChannel;
import io.grpc.ManagedChannelBuilder;
import user_api.v1.User.FindByEmailRequest;
import user_api.v1.User.FindByEmailResponse;
import user_api.v1.UserApiServiceGrpc;

public class App {
  public static void main(String[] args) {
    ManagedChannel channel = ManagedChannelBuilder
      .forAddress("user-mgmt.YOUR_SANDBOX_ID.knoxnetworks.io", 443)
      .usePlaintext()
      .build();
    UserApiServiceGrpc.UserApiServiceBlockingStub blockStub =
        UserApiServiceGrpc.newBlockingStub(channel);
    
    FindByEmailRequest req_FindByEmailRequest =
        FindByEmailRequest.newBuilder()
          .setEmail("[email protected]")
          .build();
    FindByEmailResponse resp = blockStub.findByEmail(req_FindByEmailRequest);
    System.out.println(resp);
    channel.shutdown();
  }
}
const findbyemailrequest = new FindByEmailRequest();
findbyemailrequest.setEmail("[email protected]");

service.findByEmail(findbyemailrequest, (err, value) => {
    const resp = JSON.stringify(err ? err : value);
    console.log("received ", resp);
})
extern crate grpc-sdks;
use tonic::transport::Channel;

use grpc-sdks::user_api::v1::user_api_service_client::UserApiServiceClient;
use grpc-sdks::user_api::v1::FindByEmailRequest;

#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
  let channel = Channel::from_static("user-mgmt.YOUR_SANDBOX_ID.knoxnetworks.io")
    .connect()
    .await?;
  let mut client = UserApiServiceClient::new(channel); 

  let request = tonic::Request::new(
    FindByEmailRequest{
      email: String::from("[email protected]")
    });
// sending request and waiting for response
  let response = client.find_by_email(request).await?.into_inner();
  println!("RESPONSE={:?}", response);
  Ok(())
}
package app

import io.grpc.ManagedChannelBuilder
import user_api.v1.User.FindByEmailRequest
import user_api.v1.User.FindByEmailResponse
import user_api.v1.UserApiServiceGrpc

fun main() {
    val channel = ManagedChannelBuilder
            .forAddress("user-mgmt.YOUR_SANDBOX_ID.knoxnetworks.io", 443)
            .usePlaintext()
            .build()
    var blockStub = UserApiServiceGrpc.newBlockingStub(channel)
    
    val req_FindByEmailRequest = FindByEmailRequest.newBuilder()
          .setEmail("[email protected]")
          .build()
    val resp = blockStub.findByEmail(req_FindByEmailRequest)
    println(resp)
    channel.shutdown()
}


returns FindByEmailResponse

user_api.v1.FindByEmailResponse

FieldTypeDescription
userUserUser object of the subject.
{
  "user": {
    "uuid": "UUID",
    "first_name": "John",
    "last_name": "Doe",
    "email": "[email protected]",
    "role": 0,
    "avatar": "AVATAR_URL",
    "phone": "+1 555 555 5555",
    "dids": [
      "did:method-name:zDIDMultibase58Encoded",
      "did:method-name:zDIDMultibase58Encoded"
    ],
    "external_ids": [
      {
        "key": "KEY1",
        "value": "VALUE1"
      },
      {
        "key": "KEY2",
        "value": "VALUE2"
      }
    ],
    "metadata": {
      "fields": []
    },
    "account": "15436675"
  }
}