CreateCorporateAccount
Signature
mutation {
CreateCorporateAccount(corporateName: ...)
}
Retourne : CorporateAccount!
Arguments
| Nom | Type | Requis | Défaut | Description |
|---|---|---|---|---|
userId | ID | — | — | |
corporateName | String! | ✓ | — | — |
representative | CompanyCorporateAccountRepresentativeInput | — | — | |
email | String | — | — | |
mobile | String | — | — | |
customAccesses | [UserAccountInput!] | — | — | |
distributorAdvisorId | ID | — | — | |
sendNotificationEmail | Boolean | false | — |
Exemple
mutation {
CreateCorporateAccount(
corporateName: $corporateName
) {
# Sélectionner les champs souhaités
}
}