User
Get the current user
API documentation
User
Tenant
Feature
Entitlement
User & permissions
Settings
- Settings
- Media
- Webhook
- Notification
Payment
- Payment Method
- Transaction
- SEPA XML
- Open Banking
- Bank Account Transaction
Customer
- Customer
- Customer Address
- Customer Email
- Customer Settings
- Customer Otp
Billing
- Invoice
- Invoice Position Item
- Billing Run
Dunning
- Dunning Document
- Dunning Rule
Subscription
- Subscription
- Subscription Item
- Subscription Measurement
- Billing Group
Offers
- Offer
- Offer Recipient
- Offer Template
Catalogue
- Unit
- Measurement
- Product
- Product Family
- Price Plan
- Coupon
Checkout
- Checkout Link
- Cart
Accounting
User
Get the current user
Get the current user
Required permissions:user:read
GET
/
user
/
me
Copy
curl -X GET \
/user/me \
--header "Authorization: Bearer <token>"
Copy
{
"user": {
"id": "01F9Z3ZJXZQZJZJZJZJZJZJZJZ",
"firstName": "John",
"lastName": "Doe",
"email": "jsmith@example.com"
},
"account": {
"id": "01F9Z3ZJXZQZJZJZJZJZJZJZJZ"
},
"tenant": {
"id": "01F9Z3ZJXZQZJZJZJZJZJZJZJZ",
"name": "ACME",
"username": "acme",
"legalCompanyName": "Acme Inc."
},
"roles": [
"ROLE_USER"
]
}
Authorizations
Value for the Authorization header parameter.
Response
200
application/json
User resource
Example:
["ROLE_USER"]
Was this page helpful?
Copy
curl -X GET \
/user/me \
--header "Authorization: Bearer <token>"
Copy
{
"user": {
"id": "01F9Z3ZJXZQZJZJZJZJZJZJZJZ",
"firstName": "John",
"lastName": "Doe",
"email": "jsmith@example.com"
},
"account": {
"id": "01F9Z3ZJXZQZJZJZJZJZJZJZJZ"
},
"tenant": {
"id": "01F9Z3ZJXZQZJZJZJZJZJZJZJZ",
"name": "ACME",
"username": "acme",
"legalCompanyName": "Acme Inc."
},
"roles": [
"ROLE_USER"
]
}