OBJECT

Mutation

link GraphQL Schema definition

type Mutation {

Create an organization in the system as a child of a given organization.

Arguments
input: [Not documented]
createChildOrganization(
input: CreateChildOrganizationInput!
): CreateChildOrganizationPayload

Create a user in the system. One of the user types must be used in creation

Arguments
input: [Not documented]
createPersonUser(input: CreatePersonUserInput!): CreatePersonUserPayload

Get current user existing ApiKey if not generates one.
generateApiKey: GenerateApiKeyPayload

Login with a PersonUser to get an ApiKey.

Arguments
input: The email address of the person user.
login(input: LoginInput): LoginPayload

Update credentials for the current Viewer

Arguments
input: Input for updating an credentials of the Viewer.
updateCredentials(input: UpdateCredentialsInput!): UpdateCredentialsPayload

Update an organization in the system.

Arguments
input: Input for updating an Organization.
updateOrganization(input: UpdateOrganizationInput!): UpdateOrganizationPayload

Update a user in the system.

Arguments
input: The attributes for the PersonUser.
updatePersonUser(input: UpdatePersonUserInput!): UpdatePersonUserPayload

Updates the current Person User organization assignment.

Arguments
input: Input for update a person user organization assignment.
updatePersonUserOrganizationAssignment(
input: UpdatePersonUserOrganizationAssignmentInput!
): UpdatePersonUserOrganizationAssignmentPayload

Updates all active role assignments to a given role.

Arguments
input: Input for update a person user role.
updatePersonUserRole(input: UpdatePersonUserRoleInput!): UpdatePersonUserRolePayload

Create a GT2 custom configuration

Arguments
input: [Not documented]
createGT2Configuration(
input: GT2CustomConfigurationInput!
): CreateGT2ConfigurationPayload

Change the configuration state to deprecated

Arguments
input: [Not documented]
deprecateConfiguration(
input: DeprecateConfigurationInput!
): DeprecateConfigurationPayload

Move the given Device to a new Organization

Arguments
input: [Not documented]
moveDeviceToOrganization(
input: MoveDeviceToOrganizationInput!
): MoveDeviceToOrganizationPayload

Send data to the Device's User Scratchpad

Arguments
input: [Not documented]
sendDataToUserScratchpad(
input: SendScratchpadUserDataInput!
): SendDataToUserScratchpadPayload

}

link Required by

This element is not required by anyone