bsition/docs/bsition_postman.json

588 lines
10 KiB
JSON

{
"info": {
"_postman_id": "519c29ab-b6cd-4901-8a4d-806d9e5d26df",
"name": "BSition",
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
},
"item": [
{
"name": "Create user",
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"user-agent": true,
"accept": true,
"accept-encoding": true,
"connection": true,
"host": true
}
},
"request": {
"auth": {
"type": "noauth"
},
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"username\": \"user\",\n \"password\": \"pass\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "http://localhost:8000/api/users",
"protocol": "http",
"host": [
"localhost"
],
"port": "8000",
"path": [
"api",
"users"
]
}
},
"response": []
},
{
"name": "Login",
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"user-agent": true,
"accept": true,
"accept-encoding": true,
"connection": true,
"host": true
}
},
"request": {
"auth": {
"type": "noauth"
},
"method": "POST",
"header": [],
"body": {
"mode": "formdata",
"formdata": [
{
"key": "username",
"value": "user",
"type": "default"
},
{
"key": "password",
"value": "pass",
"type": "default"
}
],
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "http://localhost:8000/api/token",
"protocol": "http",
"host": [
"localhost"
],
"port": "8000",
"path": [
"api",
"token"
]
}
},
"response": []
},
{
"name": "Get user",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "http://localhost:8000/api/users/me",
"protocol": "http",
"host": [
"localhost"
],
"port": "8000",
"path": [
"api",
"users",
"me"
]
}
},
"response": []
},
{
"name": "Update user",
"request": {
"method": "PUT",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"username\": \"usertest\",\n \"password\": \"passtest\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "http://localhost:8000/api/users/1",
"protocol": "http",
"host": [
"localhost"
],
"port": "8000",
"path": [
"api",
"users",
"1"
]
}
},
"response": []
},
{
"name": "Get users",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "http://localhost:8000/api/users",
"protocol": "http",
"host": [
"localhost"
],
"port": "8000",
"path": [
"api",
"users"
]
}
},
"response": []
},
{
"name": "Get documents",
"protocolProfileBehavior": {
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "http://localhost:8000/api/documents",
"protocol": "http",
"host": [
"localhost"
],
"port": "8000",
"path": [
"api",
"documents"
]
}
},
"response": []
},
{
"name": "Create document",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"name\": \"test-doc-another\",\n \"access\": [],\n \"owner\": \"usertest\",\n \"data\": \"Este es otro documento de prueba.\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "http://localhost:8000/api/documents",
"protocol": "http",
"host": [
"localhost"
],
"port": "8000",
"path": [
"api",
"documents"
]
}
},
"response": []
},
{
"name": "Create table",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"name\": \"table-test\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "http://localhost:8000/api/tables",
"protocol": "http",
"host": [
"localhost"
],
"port": "8000",
"path": [
"api",
"tables"
]
}
},
"response": []
},
{
"name": "Add column",
"request": {
"method": "PUT",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"column\": \"name\",\n \"type\": \"TEXT\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "http://localhost:8000/api/tables/table-test",
"protocol": "http",
"host": [
"localhost"
],
"port": "8000",
"path": [
"api",
"tables",
"table-test"
]
}
},
"response": []
},
{
"name": "Insert data",
"request": {
"method": "PUT",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"column_data\": [\"bottler\"]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "http://localhost:8000/api/tables/table-test",
"protocol": "http",
"host": [
"localhost"
],
"port": "8000",
"path": [
"api",
"tables",
"table-test"
]
}
},
"response": []
},
{
"name": "Add sort",
"request": {
"method": "PUT",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"property\": \"name\",\n \"order\": \"ASC\",\n \"priority\": 1\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "http://localhost:8000/api/tables/table-test/sort",
"protocol": "http",
"host": [
"localhost"
],
"port": "8000",
"path": [
"api",
"tables",
"table-test",
"sort"
]
}
},
"response": []
},
{
"name": "Sort table",
"protocolProfileBehavior": {
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "http://localhost:8000/api/tables/3/sort",
"protocol": "http",
"host": [
"localhost"
],
"port": "8000",
"path": [
"api",
"tables",
"3",
"sort"
]
}
},
"response": []
},
{
"name": "Add sort",
"request": {
"method": "PUT",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"property\": \"name\",\n \"order\": \"ASC\",\n \"priority\": 1\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "http://localhost:8000/api/tables/table-test/sort",
"protocol": "http",
"host": [
"localhost"
],
"port": "8000",
"path": [
"api",
"tables",
"table-test",
"sort"
]
}
},
"response": []
},
{
"name": "Sort table",
"protocolProfileBehavior": {
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "http://localhost:8000/api/tables/3/sort",
"protocol": "http",
"host": [
"localhost"
],
"port": "8000",
"path": [
"api",
"tables",
"3",
"sort"
]
}
},
"response": []
},
{
"name": "Add filter",
"request": {
"method": "PUT",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"property\": \"name\",\n \"value\": \"bottler\",\n \"function\": \"e\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "http://localhost:8000/api/tables/table-test/filter",
"protocol": "http",
"host": [
"localhost"
],
"port": "8000",
"path": [
"api",
"tables",
"table-test",
"filter"
]
}
},
"response": []
},
{
"name": "Filter table",
"protocolProfileBehavior": {
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "http://localhost:8000/api/tables/table-test/filter",
"protocol": "http",
"host": [
"localhost"
],
"port": "8000",
"path": [
"api",
"tables",
"table-test",
"filter"
]
}
},
"response": []
},
{
"name": "Log out",
"protocolProfileBehavior": {
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "http://localhost:8000/api/tables/table-test/filter",
"protocol": "http",
"host": [
"localhost"
],
"port": "8000",
"path": [
"api",
"tables",
"table-test",
"filter"
]
}
},
"response": []
}
],
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJ1c2VyOjkiLCJleHAiOjE2NzE2MjA4ODJ9.IppWpp3UgwjqZdPapo4z9uMN6jwfHpI84NONhA0OBDI",
"type": "string"
}
]
},
"event": [
{
"listen": "prerequest",
"script": {
"type": "text/javascript",
"exec": [
""
]
}
},
{
"listen": "test",
"script": {
"type": "text/javascript",
"exec": [
""
]
}
}
],
"variable": [
{
"key": "document_id",
"value": "6384e7a1061980589e79bfde"
}
]
}