Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Note

For advanced users only.

Table of Contents
excludeRelated Articles

Prerequisites

  1. Postman application

  2. Admin login credentials to the environment

  3. Familiarity using APIs. Refer,How do I use Rest APIs?.

...

  1. Use the Search User API (Method: POST) https://<domain>.orbita.cloud:8443/api/users/search

  2. In the Headers tab, add the Key as Content-Type and the Value as application/json.
    Add another Key as Authorization and set the Value as Bearer <token>

  3. In the Body tab, use the admin’s username and password and click “Send”query parameter to search.

    Code Block
    {
        "query": {
            "username":"signupuser1@example.com"
        }
    }

  4. You will receive a response body as shown below.
    The value of _id property is the user id.

...