Create a feedback
With the createFeedback mutation you can easily create a feedback in your Cycle workspace from wherever you want (e.g: mobile app, web app, ...)
1. Create a personal access token
Create a personal access token by triggering the createAccessToken
mutation and use the received token in your authorization bearer (don't forget put your login bearer token before triggering the mutation. See Queries and mutations).
2. Use the createFeedback mutation
The createFeedback
mutation requires a productId
parameter. To get one, you can use the me
query and use the first productId from your products list if you have multiple. If you don't have any, try to create a workspace first with our get-started path.
Once we have our productId, we can trigger the createFeedback
mutation
3. Create Feedback linked to company
A feedback can be directly linked to a company with the parameter company: CompanyInput
4. Integrate the mutation in your app
Work in progress...
Last updated