OBJECT

InstagramBusinessAccount

An Instagram business account

link GraphQL Schema definition

  • type InstagramBusinessAccount implements Social {
  • # ID for a user on Instagram
  • account_id: String!
  • # Flag to check if this is archived
  • archived: Boolean!
  • # Artist connected to this social
  • artist: Artist!
  • # List of artists connected to this social
  • artists: [Artist!]! @deprecated( reason: "WARNING: this field is not currently used in any application" )
  • # List of artists already syncing media from Instagram
  • artists_already_syncing: [Artist!]!
  • # Biography mentioned on Instagram
  • biography: String
  • created_at: DateTime!
  • # Associated deployer name
  • deployer_name: String
  • # FacebookPage related to this Instagram Business Account
  • facebook_page: FacebookPage!
  • # Number of followers on Instagram
  • followers_count: Int
  • # Flag to check if there's an authentication error
  • had_auth_failure: Boolean
  • id: ID!
  • # Flag to check if the account is syncing
  • is_already_syncing: Boolean!
  • # Flag to check if the social is syncing
  • is_syncing: Boolean
  • # number of Medias uploaded on Instagram
  • media_count: Int
  • # Flag for checking if the social needs reconnection
  • needs_reconnect: Boolean!
  • # Network Object for a network associated with a social
  • network: Network
  • # Network ID for a network associated with a social
  • network_id: Int
  • # Link to profile picture
  • profile_picture: String
  • # Arguments
  • # success_path: [Not documented]
  • # error_path: [Not documented]
  • reconnect_url(success_path: String, error_path: String): String
  • release_broadcast_uid: String
  • # Model name on Vydia Platform related to a Social
  • social_model_name: String
  • # Social Sync Config Object for a social that is opted for syncing
  • sync_config: SyncConfig
  • # Get the size of the thumbnail
  • #
  • # Arguments
  • # size: [Not documented]
  • thumbnail_url(size: String!): String!
  • # Title of this Social
  • title: String
  • updated_at: DateTime!
  • # URL for a social
  • url: String
  • # Username on Instagram
  • username: String
  • # Website mentioned on Instagram
  • website: String
  • }