diff --git a/tools/postman/add_new_via_duplicate.png b/tools/postman/add_new_via_duplicate.png new file mode 100644 index 000000000..cc876201c Binary files /dev/null and b/tools/postman/add_new_via_duplicate.png differ diff --git a/tools/postman/edit_example.png b/tools/postman/edit_example.png new file mode 100644 index 000000000..c75deb590 Binary files /dev/null and b/tools/postman/edit_example.png differ diff --git a/tools/postman/env_demo.png b/tools/postman/env_demo.png new file mode 100644 index 000000000..76d6255f9 Binary files /dev/null and b/tools/postman/env_demo.png differ diff --git a/tools/postman/export.png b/tools/postman/export.png new file mode 100644 index 000000000..a21d075b0 Binary files /dev/null and b/tools/postman/export.png differ diff --git a/tools/postman/get_tokens.png b/tools/postman/get_tokens.png new file mode 100644 index 000000000..c543fb51f Binary files /dev/null and b/tools/postman/get_tokens.png differ diff --git a/tools/postman/import.png b/tools/postman/import.png new file mode 100644 index 000000000..5ef74e161 Binary files /dev/null and b/tools/postman/import.png differ diff --git a/tools/postman/podkrepi.bg.postman_collection.json b/tools/postman/podkrepi.bg.postman_collection.json new file mode 100644 index 000000000..7aee0f934 --- /dev/null +++ b/tools/postman/podkrepi.bg.postman_collection.json @@ -0,0 +1,132 @@ +{ + "info": { + "_postman_id": "c5e2027f-85c2-41ba-ab2d-bebe0aa984bb", + "name": "podkrepi.bg", + "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json" + }, + "item": [ + { + "name": "1 get token", + "event": [ + { + "listen": "test", + "script": { + "exec": [ + "var data = JSON.parse(responseBody);", + "", + "postman.setGlobalVariable(\"access_token\", data.accessToken);", + "postman.setGlobalVariable(\"refresh_token\", data.refreshToken);" + ], + "type": "text/javascript", + "packages": {} + } + } + ], + "request": { + "method": "POST", + "header": [], + "body": { + "mode": "raw", + "raw": "{\n \"email\": \"{{user}}\",\n \"password\": \"{{password}}\"\n}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "https://dev.podkrepi.bg/api/v1/login", + "protocol": "https", + "host": [ + "dev", + "podkrepi", + "bg" + ], + "path": [ + "api", + "v1", + "login" + ] + } + }, + "response": [] + }, + { + "name": "User donations", + "protocolProfileBehavior": { + "disableBodyPruning": true + }, + "request": { + "method": "GET", + "header": [], + "body": { + "mode": "raw", + "raw": "{\n \"aggregations\": {\n \"cloudTags\": {\n \"aggregationType\": \"Terms\",\n \"fieldName\": \"tags.key\",\n \"subAggregations\": {\n \"tagsValues\": {\n \"aggregationType\": \"Terms\",\n \"fieldName\": \"tags.value\"\n }\n }\n }\n }\n}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "https://dev.podkrepi.bg/api/v1/donation/user-donations", + "protocol": "https", + "host": [ + "dev", + "podkrepi", + "bg" + ], + "path": [ + "api", + "v1", + "donation", + "user-donations" + ] + } + }, + "response": [] + } + ], + "auth": { + "type": "bearer", + "bearer": [ + { + "key": "token", + "value": "{{access_token}}", + "type": "string" + } + ] + }, + "event": [ + { + "listen": "prerequest", + "script": { + "type": "text/javascript", + "exec": [ + "" + ] + } + }, + { + "listen": "test", + "script": { + "type": "text/javascript", + "exec": [ + "" + ] + } + } + ], + "variable": [ + { + "key": "aassdasdasda", + "value": "", + "type": "string" + }, + { + "key": "asdasd", + "value": "asdasd", + "type": "string" + } + ] +} \ No newline at end of file diff --git a/tools/postman/readme.md b/tools/postman/readme.md new file mode 100644 index 000000000..8ad98c976 --- /dev/null +++ b/tools/postman/readme.md @@ -0,0 +1,23 @@ +# Podkrepi.bg postman collection + +## Getting started + +- Get the postman app +- Import the collection ![import image missing](./import.png) +- Create an environment and add your username and password *ensure the password is a **secret** ![create an environment image missing](./env_demo.png) +- Get the tokens via the `get token` request (it will use the postman env variables from previous step and store a access_token in postman global variables) ![authenticate image missing](./get_tokens.png) + +Done - now you can make authenticated requests: ![example for authenticated request](./user_donations_example.png) + +## Contributing to the collection + +The way to contribute is edit in a postman editor and then export it (Postman stores the collections in a db somewhere and there's no trivial way to have it store it where we need it - in the repo) + +- Edit in postman + +![add new image missing](./add_new_via_duplicate.png) + +![edit](./user_donations_example.png) + +- Export and overwrite in the repo +![export overwrite](./export.png) diff --git a/tools/postman/user_donations_example.png b/tools/postman/user_donations_example.png new file mode 100644 index 000000000..318fd09cb Binary files /dev/null and b/tools/postman/user_donations_example.png differ