Dashboard Improvement: account id
Answeredi was asked for my account id while signing up for aws marketplace order, but I can't seem to find it anywhere.
-
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. -
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 requestsfrom base64 import b64encode
api_key = "Your_key"api_secret = "Your_Secret"# Combine the API key and secretcredentials = 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)
Please sign in to leave a comment.
Comments
3 comments