Create document hotspot
documentedCreate a new hotspot on a document.
POST /document/hotspot.jsonDocumentno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://api.yumpu.com/2.0/document/hotspot.json" \
-X POST \
-H "X-ACCESS-TOKEN: {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/x-www-form-urlencoded" \
-H "Accept: application/json" \
-d "document_id={{$document_id}}" \
-d "page={{$page}}" \
-d "type={{$type}}" \
-d "settings[x]={{$settings_x}}" \
-d "settings[y]={{$settings_y}}" \
-d "settings[w]={{$settings_w}}" \
-d "settings[h]={{$settings_h}}" \
-d "settings[name]={{$settings_name}}" \
-d "settings[tooltip]={{$settings_tooltip}}" \
-d "settings[link]={{$settings_link}}"