This repository has no description
1{
2 "using": ["urn:ietf:params:jmap:core", "urn:ietf:params:jmap:mail"],
3 "methodCalls": [
4 ["Mailbox/set", {
5 "accountId": "acc1",
6 "create": {
7 "newBox": {"name": "New Folder", "parentId": null}
8 }
9 }, "c1"],
10 ["Email/set", {
11 "accountId": "acc1",
12 "create": {
13 "draft1": {
14 "mailboxIds": {"#newBox": true},
15 "subject": "Draft in new folder"
16 }
17 }
18 }, "c2"]
19 ]
20}