Enable and Configure AI Co-Pilot
The AI Co-Pilot allows your customers to build workflows through natural language.
If you want to enable the AI Co-Pilot for your customers programmatically, issue an updateCustomer mutation with the allowWorkflowCopilot field set to true.
Enable AI Co-Pilot for a customer
mutation {
updateCustomer(
input: {
id: "Q3V-YOUR-CUSTOMERS-ID"
allowEmbeddedDesigner: true
allowWorkflowCopilot: true
}
) {
customer {
id
}
errors {
field
messages
}
}
}