How to read Gigya Account data through python code?

505 Views Asked by At

I am new to API and development.

Any idea how to read Gigya account details through api, using python?

If I can pass the email address, I want to list down other details, such as UID, First name, Last name etc.

1

There are 1 best solutions below

0
Victor Navarro On

You can use Gigya's REST API to get the details of a Gigya account. You can use accounts.getAccountInfo Where you can pass the UID of the user and get the profile in the response or you can use accounts.search, where you can do a query to get the user profile.

You have examples in Python in the links.