This app is a sticky note app for zendesk that uses custom resources, before using this app you will need to perform two curl requests to install the necessary resource and relationship types
-- SUBDOMAIN -- username and password
https://gist.github.com/dpawluk/6cda1d0af0cb1699a2ea79a44e2ad129
curl https://SUBDOMAIN.zendesk.com/api/custom_resources/resource_types -u [email protected]/token:TOKEN \
-H "Content-type: application/json" -X POST \
-d '{ "data": { "key": "sticky_note", "schema": { "properties": { "note": { "type": "string", "description": "The of the sticky note" } }, "required": [ "note" ] } } }'
curl https://SUBDOMAIN.zendesk.com/api/custom_resources/relationship_types -u [email protected]/token:TOKEN \
-H "Content-type: application/json" -X POST \
-d '{ "data": { "key": "user_to_note", "source": ["zen:user"], "target": "sticky_note" } }'