SOLVED - GraphQL API - possible to disable / suppress the welcome email?

SUCCESS!
sending umEnable: False successfully stops this behaviour.

for completeness, here is a very basic GQL example im using in postman.
POST to http://{{sever}}/admin/api/api/gql
graphQL query:

      addExtension(
          input: {
              extensionId: 1234
              name: "graphql test"
              tech: "pjsip"
              outboundCid: ""
              email: "[email protected]"
              umEnable: false
              vmPassword: "4321"
              vmEnable: true
          }
      ) {
          status
          message
      }
  }

which gives the response:

    "data": {
        "addExtension": {
            "status": true,
            "message": "Extension has been created Successfully"
        }
    }
}
1 Like