Get current user
Retrieve the authenticated user's Midpage identity and current subscription status.
Authenticate with a bearer token in the Authorization header.
Supported bearer tokens:
- OAuth access token
- API key
Common subscription statuses:
activetrialingpast_duecanceled
If no subscription status is available, subscriptionStatus may be null.
Responses
- application/json
- application/json
Request Example for get/me
curl http://app.midpage.ai/api/v1/me \
--header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
"userId": "user_123",
"subscriptionStatus": "active"
}