Nextcloud API Scripting Decks verwalten Notizen automatisieren und mehr

nextcloud-api-scripting-decks-verwalten-notizen-automatisieren-und-mehr https://www.youtube.com/watch?v=klb_1lUMATI

Nextlcoud API Scripting Link to heading

Erste API tests Link to heading

Meine Commands aus dem Video: Link to heading

curl -u admin:222-1111-3333-4444-5555 -X GET \
    'https://mynextcloud.ipv64.net/index.php/apps/deck/api/v1.1/boards' \
    -H "OCS-APIRequest: true"
curl -i -u admin:222-1111-3333-4444-5555  -X POST \
    'https://mynextcloud.ipv64.net/index.php/apps/deck/api/v1.1/boards/1/stacks/1/cards' \
    -H "OCS-APIRequest: true" \
    -H "Content-Type: application/json" \
    -d '{ 
        "title": "pixeledi abonnieren!!",
        "type": "plain",
        "order": 1,
        "description": "Ich kontrolliere das natürlich!!!!"
    }'
curl -i -u admin:222-1111-3333-4444-5555 -X POST \
    'https://mynextcloud.ipv64.net/index.php/apps/deck/api/v1.1/boards/1/stacks/1/cards/14/attachments' \
    -H "OCS-APIRequest: true" \
    -F "type=file" \
    -F "file=@/home/pixeledi/Downloads/iusearchbtw.png"

Tip
Entdecke spannende Online-Kurse zu ESP32, IoT und Linux auf meiner Lernplattform: https://pixeledi.teachable.com.