Sign in

Create document (url)

documented

Create a new document from a publicly accessible URL.

POST /document/url.jsonDocumentno implementation yet0 runs
No 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/url.json" \
  -X POST \
  -H "X-ACCESS-TOKEN: {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/x-www-form-urlencoded" \
  -H "Accept: application/json" \
  -d "url={{$url}}" \
  -d "title={{$title}}" \
  -d "description={{$description}}" \
  -d "category={{$category}}" \
  -d "language={{$language}}" \
  -d "tags={{$tags}}" \
  -d "visibility={{$visibility}}" \
  -d "rendering_type={{$rendering_type}}" \
  -d "domains={{$domains}}"