eshangin
eshangin

Reputation: 99

API and Clio Manage

I'm trying to implement OAuth flow for Clio API. During OAuth process it sends me to Clio Manage login page and I'm unable to login into it. At the same time I can login to https://eu.app.clio.com/ using same credentials.

The question is for the people who already made integration with Clio: did you used trial account or maybe you had paid account? I'm not sure if I need paid account for Clio API integration (Clio Manage login). I sent my question to Clio support but I do not have a lot of time and want to ask the same here...

Upvotes: 1

Views: 954

Answers (2)

user1708331
user1708331

Reputation: 31

For USA and Europe there are different auth-point. If can login to https://eu.app.clio.com/ , try connect:

   "BaseUrl": "https://eu.app.clio.com/api/v4/",
   "CallbackUrl": "https://app.clio.com/oauth/approval",
   "AuthUrl": "https://eu.app.clio.com/oauth/authorize",
   "TokenUrl": "https://eu.app.clio.com/oauth/token"

If can login to https://app.clio.com/ , try connect:

 "BaseUrl": "https://app.clio.com/api/v4/",
 "CallbackUrl": "https://app.clio.com/oauth/approval",
 "AuthUrl": "https://app.clio.com/oauth/authorize",
 "TokenUrl": "https://app.clio.com/oauth/token"

Upvotes: 3

eshangin
eshangin

Reputation: 99

Clio support sent me the next link: https://support.clio.com/hc/en-us/articles/203163300-Clio-API. This link tells me that unfortunately I do not have access to API in trial

Upvotes: 1

Related Questions