auto_wizard_example.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. {
  2. "Token": "secret_token",
  3. "CalendarSetup": {
  4. "Ip": "195.65.29.254"
  5. },
  6. "Users": [
  7. {
  8. "login": "hans.atila@zammad.org",
  9. "firstname": "Hans",
  10. "lastname": "Atila",
  11. "email": "hans.atila@zammad.org",
  12. "organization": "Demo Organization",
  13. "password": "Z4mm4dr0ckZ!"
  14. }
  15. ],
  16. "Settings": [
  17. {
  18. "name": "developer_mode",
  19. "value": true
  20. },
  21. {
  22. "name": "product_name",
  23. "value": "Zammad Demo System"
  24. },
  25. {
  26. "name": "system_online_service",
  27. "value": true
  28. }
  29. ],
  30. "EmailAddresses": [
  31. {
  32. "id": 1,
  33. "channel_id": 10,
  34. "realname": "Zammad Demo System",
  35. "email": "zammad_demo@localhost"
  36. }
  37. ],
  38. "Organizations": [
  39. {
  40. "name": "Demo Organization"
  41. }
  42. ],
  43. "Signatures": [
  44. {
  45. "id": 1,
  46. "name": "default",
  47. "body": "\n #{user.firstname} #{user.lastname}\n\n--\n Demo Organization\n--"
  48. }
  49. ],
  50. "Channels": [
  51. {
  52. "id": 10,
  53. "area": "Email::Account",
  54. "group_id": 1,
  55. "options": {
  56. "inbound": {
  57. "adapter": "imap",
  58. "options": {
  59. "host": "mx1.example.com",
  60. "user": "some user",
  61. "password": "some pw",
  62. "ssl": true
  63. }
  64. },
  65. "outbound": {
  66. "adapter": "sendmail"
  67. }
  68. },
  69. "active":false
  70. }
  71. ]
  72. }