INPUT_OBJECT
InstructorInput
An input data structure to create or update an instructor. Lastname is required. Be careful not creating duplicates!
link GraphQL Schema definition
- input InstructorInput {
- # N° comptable de l'intervenant
- : String
- # Bio de l'intervenant
- : String
- # Lieu de naissance de l'intervenant
- : String
- : String
- # Date de naissance de l'intervenant
- : String
- # Adresse de l'intervenant (ville)
- : String
- # Adresse de l'intervenant (code postal)
- : String
- # one of "mr", "mme", "other"
- : String
- # German administration only - Title, prof, dr, or prof_dr
- : Title
- # Code interne de l'intervenant
- : String
- # Entreprise de l'intervenant
- : String
- # Contrat cadre accepté ?
- : Boolean
- # Tarif de l'intervenant
- : Float
- # Instructor cost modality
- : InstructorCostMode
- # Adresse de l'intervenant (code ISO pays)
- : 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.
- : [CustomFieldInput]
- # Diplômes de l'intervenant
- : String
- # Code Adeli (DPC)
- : String
- # Code RPPS (DPC)
- : String
- # Email de l'intervenant
- : String
- # Champs libre pour indiquer un lien avec un service externe
- : String
- # Prénom de l'intervenant
- : String
- # Numéro de déclaration de l'intervenant
- : String
- # N° assurance de l'intervenant
- : String
- # Nom de l'intervenant
- : String
- # Langue
- : String
- # Nationalité de l'intervenant
- : String
- # Notes libres
- : String
- # Téléphone de l'intervenant
- : String
- # Profession
- : String
- # Adresse de l'intervenant (rue)
- : String
- # N° d'enregistrement de l'intervenant
- : String
- # Notes sur les compétences
- : String
- # N° sécurité sociale de l'intervenant
- : String
- # Statut de l'intervenant
- : String
- # List of tags to describe the instructor. CAREFUL: Only existing tag are taken
- # into account. Tags are case-sensitive.
- : [String]
- # Taux de TVA de l'intervenant
- : Float
- }