OBJECT

Company

A Company

link GraphQL Schema definition

  • type Company {
  • # 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
  • # DEPRECATED - Use `civility` from `contact` instead
  • contact2Civility: String @deprecated( reason: "Use `civility` from `contact` instead" )
  • # DEPRECATED - Use `email` from `contact` instead
  • contact2Email: String @deprecated( reason: "Use `email` from `contact` instead" )
  • # DEPRECATED - Use `fax` from `contact` instead
  • contact2Fax: String @deprecated( reason: "Use `fax` from `contact` instead" )
  • # DEPRECATED - Use `firstname` from `contact` instead
  • contact2Firstname: String @deprecated( reason: "Use `firstname` from `contact` instead" )
  • # DEPRECATED - Use `lastname` from `contact` instead
  • contact2Lastname: String @deprecated( reason: "Use `lastname` from `contact` instead" )
  • # DEPRECATED - Use `phone` from `contact` instead
  • contact2Phone: String @deprecated( reason: "Use `phone` from `contact` instead" )
  • # DEPRECATED - Use `position` from `contact` instead
  • contact2Position: String @deprecated( reason: "Use `position` from `contact` instead" )
  • # DEPRECATED - Use `civility` from `contact` instead
  • contactCivility: String @deprecated( reason: "Use `civility` from `contact` instead" )
  • # DEPRECATED - Use `email` from `contact` instead
  • contactEmail: String @deprecated( reason: "Use `email` from `contact` instead" )
  • # DEPRECATED - Use `fax` from `contact` instead
  • contactFax: String @deprecated( reason: "Use `fax` from `contact` instead" )
  • # DEPRECATED - Use `firstname` from `contact` instead
  • contactFirstname: String @deprecated( reason: "Use `firstname` from `contact` instead" )
  • # DEPRECATED - Use `lastname` from `contact` instead
  • contactLastname: String @deprecated( reason: "Use `lastname` from `contact` instead" )
  • # DEPRECATED - Use `phone` from `contact` instead
  • contactPhone: String @deprecated( reason: "Use `phone` from `contact` instead" )
  • # DEPRECATED - Use `position` from `contact` instead
  • contactPosition: String @deprecated( reason: "Use `position` from `contact` instead" )
  • contacts: [Contact]
  • country: String
  • # Adresse de l'entreprise (code ISO pays)
  • countryCode: String
  • # Returns an object of custom fields. It only returns fields that are not empty.
  • # Cf. http://app.digiforma.com/help#section-more-config. This feature might not be
  • # included in your plan.
  • customFields: Map
  • # Used only for temporary companies when pre-registering into a session
  • 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
  • id: ID
  • # IDCC
  • idcc: String
  • # Creation date and time - format: YYYY-MM-DDThh:mm:sss
  • insertedAt: NaiveDateTime
  • # 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
  • notes: [Note]
  • # 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
  • trainingSessions: [TrainingSession]
  • # Last update date and time - format: YYYY-MM-DDThh:mm:sss
  • updatedAt: NaiveDateTime
  • # 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
  • }