Search + K

Command Palette

Search for a command to run...

Sign In

Retrieve account details

GET /account-info/v3/details
Copy endpoint
https://api.hubapi.com

Retrieve account details such as the account type, time zone, currencies, and data hosting location.

Responses

200 application/json

successful operation

interface PortalInformationResponse {
accountType: "APP_DEVELOPER" | "DEVELOPER_TEST" | "SANDBOX" | "STANDARD";
additionalCurrencies: string[];
companyCurrency: string;
dataHostingLocation: string;
portalId: number;
timeZone: string;
uiDomain: string;
utcOffset: string;
utcOffsetMilliseconds: number;
}
default */*

An error occurred.

interface Error {
category: string;
context?: { };
correlationId: string;
errors?: ErrorDetail
interface ErrorDetail {
code?: string;
context?: { };
in?: string;
message: string;
subCategory?: string;
}
[]
;
links?: { };
message: string;
subCategory?: string;
}