Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 706 Bytes

SUPPORTS_API.md

File metadata and controls

25 lines (18 loc) · 706 Bytes

Supports API

Add Supports Ticket

Creates supports ticket.

const RenderforestClient = require('@renderforest/sdk-node')

const Renderforest = new RenderforestClient({ signKey: '<signKey>', clientId: -1 })

Renderforest.addSupportsTicket({
    message: 'I need to...',
    mailType: 'Creative team',
    subject: 'Some help in ..'
  })
  .then(console.log) // handle the success
  .catch(console.error) // handle the error
  • The possible values of ticket mailType are: 'Sales', 'Report a bug', 'Editing process', 'Creative team', 'Other'.

See example

⬆ back to the top