Account Management
Fetch Account Information from API key
Fetches information about current account.
Request
GET https://api.fivetran.com/v1/account/info
Response
HTTP 200 OK
{
"code":"Success",
"data":{
"account_id":"your_account_id",
"account_name": "Account Name",
"user_id":"api_user_id",
"system_key_id": "system_key_id"
}
}
Name | Description |
---|---|
account_id | The unique identifier for the account within the Fivetran system. |
account_name | The account name displayed in your Fivetran dashboard. |
user_id | (Optional) The user ID from the API key. Returned if the user API key is used to authenticate the request. |
system_key_id | (Optional) The system ID from the API key. Returned if the system API key is used to authenticate the request. |