get https://app.pennylane.com/api/external/v1/me
This endpoint returns information about the company and the user associated to the token.
Log in to see full request history
Responses
This endpoint returns information about the company and the user associated to the token.
xxxxxxxxxx
curl --request GET \
--url https://app.pennylane.com/api/external/v1/me \
--header 'accept: application/json'
xxxxxxxxxx
14{
"user": {
"id": 12345,
"first_name": "John",
"last_name": "Doe",
"email": "jdoe@pennylane.com",
"locale": "fr"
},
"company": {
"id": 123456,
"name": "Pennylane",
"reg_no": 123456789
}
}