Currently, for integration with the platform, it is necessary to enter the user_id of the users. However, this information must be obtained manually through the platform interface, which creates significant operational dependency.
I would like to request the creation of a user query endpoint via API, in which, by entering a standard and fixed data such as the user's email, the system could return the respective user_id.
This functionality is extremely important to avoid code maintenance issues in hiring scenarios or changes to IDs.
Endpoint suggestion:
• Method: GET
• Suggested route: /users? email= {email}
• Expected response:
{
“user_id”: “123456",
“e-mail”: "usuario@email.com “,
“name”: “Username”
}
If creating the endpoint is not possible, I would like to understand if there is any other feasible way to use a standard identifier, such as email, to link users via API, instead of the fixed user_id.
·