Gå till huvudinnehåll

Example: Create an Article

i Javascript SDK
Författarlista
Publicerad: 18 juli 2022
<!DOCTYPE> <html> <head> <script src="https://unpkg.com/@deskpro/deskpro-api-client-javascript@2.0.0/dist/index.js"></script> </head> <body> <form> <div> Title: <input type="text" name="title"> </div> <div> Content: <textarea name="content" cols="80" rows="10"></textarea> </div> <button type="submit">Submit</button> </form> <script> var form = document.getElementsByTagName('form')[0]; form.addEventListener('submit', function(e) { e.preventDefault(); var body = { title: form.elements['title'].value, content: form.elements['content'].value, content_input_type: 'rte', status: 'published' }; // Send the article body to the API. var client = new DeskproClient('http://deskpro.company.com'); client.setAuthKey(1, 'dev-admin-code'); client.post('/articles', body) .then(function(resp) { console.log('Article created with ID ' + resp.data.id); }) .catch(function(err) { console.error(err.message); }); }); </script> </body> </html>
copy

Submitting the form should show you something like this in your debug console:

Article created with ID 107
copy
HjälpfullOanvändbar
nästa sidaHow Apps Extend Deskpro
föregående sidaJavascript SDK

Logga in eller registrera dig för att lämna en kommentar.