-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcreateDocument.cpp
34 lines (30 loc) · 981 Bytes
/
createDocument.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#include "Appwrite.hpp"
#include <json.hpp>
#include <iostream>
int main()
{
std::string projectId = "66fbb5a100070a3a1d19";
std::string apiKey = "";
std::string databaseId = "database123";
std::string collectionId = "test1234";
std::string documentId = "document123";
json data = {
{"new_email_attribute", "[email protected]"},
{"new_enum_attribute", {"element1234"}},
{"UpdatedFloat123", 9},
{"UpdatedInteger123", 123},
{"UpdatedIPaddress123", "192.168.1.1"},
{"UpdatedString123", {"abc", "def"}}
};
Appwrite appwrite(projectId, apiKey);
try
{
std::string response = appwrite.getDatabases().createDocument(databaseId, collectionId, documentId, data);
std::cout << "Document created successfully! \nResponse: " << response << std::endl;
}
catch (const AppwriteException &ex)
{
std::cerr << "Exception: " << ex.what() << std::endl;
}
return 0;
}