Authorizations
The access token received from the authorization server in the OAuth 2.0 flow.
Query Parameters
Email of the user to find. The email must be URL encoded.
Example:
Response
User was found
Details of the user
curl --request GET \
--url https://app.pennylane.com/api/external/v2/users/find \
--header 'Authorization: Bearer <token>'
{
"user": {
"id": 123,
"email": "[email protected]"
}
}
Find a user using its email address. In order to authenticate the request, a valid
OAuth2 token must be provided. The token must be generated
with client_credentials
grant type.
The token must have the following scopes:
users
capital_deposits
OR companies:all
ℹ️ This endpoint requires one of the following scopes:
users
,capital_deposits
,companies:all
curl --request GET \
--url https://app.pennylane.com/api/external/v2/users/find \
--header 'Authorization: Bearer <token>'
{
"user": {
"id": 123,
"email": "[email protected]"
}
}
The access token received from the authorization server in the OAuth 2.0 flow.
Email of the user to find. The email must be URL encoded.
User was found
Details of the user
Show child attributes
Was this page helpful?