Hello how can i check if the user of my

Hello how can i check if the user of my actor is in trial period or not ? Thanks
9 Replies
helpful-purple
helpful-purple•5mo ago
Hey man, I also had that question!
helpful-purple
helpful-purple•5mo ago
If you go to the development tab in the console.
No description
helpful-purple
helpful-purple•5mo ago
you then have access to the Analytics
No description
helpful-purple
helpful-purple•5mo ago
In here you can see which users are free and which are paying!
No description
harsh-harlequin
harsh-harlequin•5mo ago
i mean via python code
vicious-gold
vicious-gold•5mo ago
You cannot
conscious-sapphire
conscious-sapphire•5mo ago
Yes you can do it programmatically:
user_info = await Actor.apify_client.user().get()
if not user_info.get('isPaying'):
# do something
user_info = await Actor.apify_client.user().get()
if not user_info.get('isPaying'):
# do something
MEE6
MEE6•5mo ago
@nathanist just advanced to level 3! Thanks for your contributions! 🎉
vicious-gold
vicious-gold•5mo ago
it tells you if user pays for apify platform, not if it's on trial

Did you find this page helpful?