Files
m3o-go/curl/db/create/createARecord.sh
2021-10-29 10:40:25 +00:00

12 lines
241 B
Bash
Executable File

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"
}'