Creating a custom script
Built-in code editors give you a chance to build any integration you require. Possibilities are endless - your limit is your imagination. There are a couple of things to keep in mind when creating a task. 1. Permissions
To maintain the highest level of security, the app requests only very basic permissions when installed. However, when creating a task, some additional permissions might be required. For example, you might need the write_orders
permission to add a tag to an order. The app automatically detects the required permissions when the task code is compiled. However, you need to assist the compiler a bit.
When defining REST/GraphQL requests do it at very top of the script:
Next, you can use dummy input to tell compiler what variables it should expect.
Above code snippet won't be executed when your task actually runs. It is because it is wrapped in if
condition. mode.compiler
is set to true
only when creating/editing task.
After adding the above code, the compiler knows what to expect from your task and can easily evaluate the permissions it needs to run. You can now save it and return to the app dashboard. You will be prompted to update app permissions.
After clicking the Update button, the app should prompt you for additional permissions. After granting permissions you should be redirected back to Developer Console.
Here is how you would tell compiler about any REST request:
Last updated