User Details
This API retrieves user information based on the provided API access token. It returns user details along with active subscription data.
ENDPOINT
Request
Response
Success Response (200)
{
"success": true,
"Data": [
{
"customer": {
"name": "John Doe",
"Email": "[email protected]"
}
},
{
"Subscription": {
"Plan Name": "Premium Plan",
"Total Credit": 1000,
"Used Credit": 500,
"Left Credit": 500,
}
}
]
}Last updated
Was this helpful?