remove curl files

This commit is contained in:
Asim Aslam
2021-10-29 11:39:33 +01:00
parent c5c2867dc3
commit 8e9779a8cb
127 changed files with 0 additions and 895 deletions

View File

@@ -1,6 +0,0 @@
curl "https://api.m3o.com/v1/db/Count" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $M3O_API_TOKEN" \
-d '{
"table": "users"
}'

View File

@@ -1,12 +0,0 @@
curl "https://api.m3o.com/v1/db/Create" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $M3O_API_TOKEN" \
-d '{
"record": {
"age": 42,
"id": "1",
"isActive": true,
"name": "Jane"
},
"table": "users"
}'

View File

@@ -1,7 +0,0 @@
curl "https://api.m3o.com/v1/db/Delete" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $M3O_API_TOKEN" \
-d '{
"id": "1",
"table": "users"
}'

View File

@@ -1,7 +0,0 @@
curl "https://api.m3o.com/v1/db/Read" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $M3O_API_TOKEN" \
-d '{
"query": "age == 43",
"table": "users"
}'

View File

@@ -1,6 +0,0 @@
curl "https://api.m3o.com/v1/db/Truncate" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $M3O_API_TOKEN" \
-d '{
"table": "users"
}'

View File

@@ -1,10 +0,0 @@
curl "https://api.m3o.com/v1/db/Update" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $M3O_API_TOKEN" \
-d '{
"record": {
"age": 43,
"id": "1"
},
"table": "users"
}'