Artikel per API eine Download-Datei zuweisen

Hi kayyy, danke schonmal, PUT bringt mich einen kleinen Schritt weiter. Hier mal das „downloads“-Array aus der GET-Abfrage: [downloads] =\> Array ( [0] =\> Array ( [id] =\> 1 [articleId] =\> 2 [name] =\> Datenblatt [file] =\> media/pdf/Datenblatt.pdf [size] =\> 0 ) ) Ich erhalte nun folgende Fehlermeldung: [quote]Errormesage: An exception occurred while executing ‚INSERT INTO s_articles_downloads (articleID, description, filename, size) VALUES (?, ?, ?, ?)‘ with params [2, null, null, null]: SQLSTATE[23000]: Integrity constraint violation: 1048 Column ‚description‘ cannot be null[/quote] Mein Aufruf: $objClient-\>put('articles/2', array( 'downloads' =\> array( 'name' =\> 'Download-Datei', 'file' =\> $strPathToFile, 'link' =\> 1 ) ));