Account
No description
type Account {
id: ID!
name: String!
known_isp: Boolean!
is_default: Boolean!
phone: String
fax: String
website: String
account_number: String
billing_street: String
billing_city: String
billing_state: String
billing_country: String
billing_zip: String
shipping_street: String
shipping_city: String
shipping_state: String
shipping_country: String
shipping_zip: String
employee_count: Int
sic_code: String
revenue: BigInt
owner: Owner
industry: AccountIndustry
type: AccountType
status: AccountStatus
ownership: String
description: String
crm_id: String
created_at: DateTime
updated_at: DateTime
custom_fields(
ids: [ID!]
): [CustomFieldValue]!
facebook_url: String
instagram_url: String
linkedin_url: String
twitter_url: String
youtube_url: String
favicon_url: String
contacts(
first: Int!
page: Int
): ContactPaginator!
}
Fields
Account.id ● ID! non-null scalar
Account.name ● String! non-null scalar
Account.known_isp ● Boolean! non-null scalar
Account.is_default ● Boolean! non-null scalar
Account.phone ● String scalar
Account.fax ● String scalar
Account.website ● String scalar
Account.account_number ● String scalar
Account.billing_street ● String scalar
Account.billing_city ● String scalar
Account.billing_state ● String scalar
Account.billing_country ● String scalar
Account.billing_zip ● String scalar
Account.shipping_street ● String scalar
Account.shipping_city ● String scalar
Account.shipping_state ● String scalar
Account.shipping_country ● String scalar
Account.shipping_zip ● String scalar
Account.employee_count ● Int scalar
Account.sic_code ● String scalar
The "Standard Industrial Classification Code" is a 4 digit code assigned by the U.S. government to identify an organization's primary business focus
Account.revenue ● BigInt scalar
Account.owner ● Owner object
Account.industry ● AccountIndustry object
Account.type ● AccountType object
Account.status ● AccountStatus object
Account.ownership ● String scalar
Account.description ● String scalar
Account.crm_id ● String scalar
The unique ID of this Account in your integrated CRM (if any)
Account.created_at ● DateTime scalar
Account.updated_at ● DateTime scalar
Account.custom_fields ● [CustomFieldValue]! non-null object
Account.custom_fields.ids ● [ID!] list scalar
Account.facebook_url ● String scalar
Account.instagram_url ● String scalar
Account.linkedin_url ● String scalar
Account.twitter_url ● String scalar
Account.youtube_url ● String scalar
Account.favicon_url ● String scalar
Account.contacts ● ContactPaginator! non-null object
Account.contacts.first ● Int! non-null scalar
Limits number of fetched items. Maximum allowed value: 500.
Account.contacts.page ● Int scalar
The offset from which items are returned.
Returned By
account query ● createAccount mutation ● deleteAccount mutation ● discoverAccountSocialProfiles query ● updateAccount mutation
Member Of
AccountNote object ● AccountPaginator object ● Contact object


