INPUT_OBJECT

CompanyInput

An input data structure to create or update a company

link GraphQL Schema definition

  • input CompanyInput {
  • # N° de compte entreprise en compta
  • accountingNumber: String
  • # Code APE de l'entreprise
  • ape: String
  • # Adresse de l'entreprise (ville)
  • city: String
  • # Adresse de l'entreprise (code postal)
  • cityCode: String
  • # Code interne de l'entreprise
  • code: String
  • contacts: [ContactInputObject]
  • # Adresse de l'entreprise (code ISO pays)
  • countryCode: String
  • # Input an object of custom fields. Format: [{field:`name of your custom field`,
  • # value:`your value`}] CAREFUL: Only input existing custom field. Adding none
  • # existing custom field will fail the request. Cf.
  • # http://app.digiforma.com/help#section-more-config. This feature might not be
  • # included in your plan.
  • customFields: [CustomFieldInput]
  • # Create a draft company, defaults to false
  • draft: Boolean
  • # Email de l'entreprise
  • email: String
  • # Effectifs de l’entreprise
  • employeesCount: Int
  • # Champs libre pour indiquer un lien avec un service externe
  • externalId: String
  • # Groupe de l'entreprise
  • group: String
  • # IDCC
  • idcc: String
  • # Make the order form number required for invoices involving this company
  • isOrderFormRequired: Boolean
  • # Registered business name
  • legalName: String
  • # Langue
  • locale: String
  • # NACE
  • nace: String
  • # Nom de l'entreprise
  • name: String
  • # Notes libres
  • note: String
  • # OPCO
  • opca: String
  • # Numéro d’adhérent à l’OPCO
  • opcaNumber: String
  • # Tel de l'entreprise
  • phone: String
  • # Etat ou collectivité territoriale ?
  • publicOrganization: Boolean
  • # Ville de l'enregistrement du RCS
  • rcsCity: String
  • # Adresse de l'entreprise (rue)
  • roadAddress: String
  • # N° d'enregistrement de l'entreprise
  • siret: String
  • # Numéro de TVA l'entreprise
  • vat: String
  • # N° de compte TVA en compta
  • vatAccountingCode: String
  • # German administration only - Umsatzsteuer-Identifikationsnummer
  • vatSales: String
  • # Site web de l'entreprise
  • website: String
  • }