Skip to main content

Community

Dashboard Improvement: account id

Answered

Please sign in to leave a comment.

Comments

3 comments

  • Enyinnaya Mbagwu User

    Hello David,
    Thank you for submitting this feature request. I am currently reviewing it and will get back to you with a response as soon as I get more details. 

  • Enyinnaya Mbagwu User

    Hi David, could you share more details about where in the process you are being asked to enter the account id. It will be helpful if you could share a screenshot. 

    I also Struggled to find it in platform - seems like it doesn't exist anywhere within the portal. For Future reference, or anyone else looking for a solution on where to find your FiveTran account ID :
    You can do it with a request, here's an example with python
    - also in the documentation:
    Get account info from API key (fivetran.com)

    import requests
    from base64 import b64encode

    api_key = "Your_key"
    api_secret = "Your_Secret"
    # Combine the API key and secret
    credentials = f"{api_key}:{api_secret}"
    encoded_credentials = b64encode(credentials.encode('utf-8')).decode('utf-8')

    headers = {
        "Accept": "application/json",
        "Authorization": f"Basic {encoded_credentials}"
    }

    response = requests.request("GET", url, headers=headers)

    print(response.text)