{
	"info": {
		"_postman_id": "433b625c-9168-4c06-ad45-6b4a94d581d9",
		"name": "GlotCore REST API",
		"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
		"_exporter_id": "3761381"
	},
	"item": [
		{
			"name": "formats",
			"item": [
				{
					"name": "[GET] Formats",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{api_url}}{{api_namespace}}/formats",
							"host": [
								"{{api_url}}{{api_namespace}}"
							],
							"path": [
								"formats"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "glossaries",
			"item": [
				{
					"name": "[GET] Glossaries",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"method": "GET",
						"header": [],
						"body": {
							"mode": "urlencoded",
							"urlencoded": []
						},
						"url": {
							"raw": "{{api_url}}{{api_namespace}}/glossaries",
							"host": [
								"{{api_url}}{{api_namespace}}"
							],
							"path": [
								"glossaries"
							]
						}
					},
					"response": []
				},
				{
					"name": "[POST] Glossary - New",
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "urlencoded",
							"urlencoded": [
								{
									"key": "translation_set_id",
									"value": "{{set_id}}",
									"type": "text"
								},
								{
									"key": "description",
									"value": "Created via Postman {{$timestamp}}",
									"type": "text"
								}
							]
						},
						"url": {
							"raw": "{{api_url}}{{api_namespace}}/glossaries",
							"host": [
								"{{api_url}}{{api_namespace}}"
							],
							"path": [
								"glossaries"
							]
						}
					},
					"response": []
				},
				{
					"name": "[GET] Glossary - Get by Glossary ID",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"method": "GET",
						"header": [],
						"body": {
							"mode": "urlencoded",
							"urlencoded": []
						},
						"url": {
							"raw": "{{api_url}}{{api_namespace}}/glossaries/{{glossary_id}}",
							"host": [
								"{{api_url}}{{api_namespace}}"
							],
							"path": [
								"glossaries",
								"{{glossary_id}}"
							]
						}
					},
					"response": []
				},
				{
					"name": "[PUT] Glossary - Edit by Glossary ID",
					"request": {
						"method": "PUT",
						"header": [],
						"body": {
							"mode": "urlencoded",
							"urlencoded": [
								{
									"key": "translation_set_id",
									"value": "1",
									"type": "text"
								},
								{
									"key": "description",
									"value": "Edited via Postman {{$timestamp}}",
									"type": "text"
								}
							]
						},
						"url": {
							"raw": "{{api_url}}{{api_namespace}}/glossaries/{{glossary_id}}",
							"host": [
								"{{api_url}}{{api_namespace}}"
							],
							"path": [
								"glossaries",
								"{{glossary_id}}"
							]
						}
					},
					"response": []
				},
				{
					"name": "[DELETE] Glossary - Delete by Glossary ID",
					"request": {
						"method": "DELETE",
						"header": [],
						"body": {
							"mode": "urlencoded",
							"urlencoded": []
						},
						"url": {
							"raw": "{{api_url}}{{api_namespace}}/glossaries/{{glossary_id}}",
							"host": [
								"{{api_url}}{{api_namespace}}"
							],
							"path": [
								"glossaries",
								"{{glossary_id}}"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "glossaries/entries",
			"item": [
				{
					"name": "[GET] Glossary Entries",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"method": "GET",
						"header": [],
						"body": {
							"mode": "urlencoded",
							"urlencoded": []
						},
						"url": {
							"raw": "{{api_url}}{{api_namespace}}/glossaries/{{glossary_id}}/entries",
							"host": [
								"{{api_url}}{{api_namespace}}"
							],
							"path": [
								"glossaries",
								"{{glossary_id}}",
								"entries"
							]
						}
					},
					"response": []
				},
				{
					"name": "[POST] Glossary Entry - New",
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "urlencoded",
							"urlencoded": [
								{
									"key": "term",
									"value": "GlotPress",
									"type": "text"
								},
								{
									"key": "translation",
									"value": "GlotPress",
									"type": "text"
								},
								{
									"key": "part_of_speech",
									"value": "noun",
									"type": "text"
								},
								{
									"key": "comment",
									"value": "Odmieniamy: GlotPressa, GlotPressie...",
									"type": "text"
								}
							]
						},
						"url": {
							"raw": "{{api_url}}{{api_namespace}}/glossaries/{{glossary_id}}/entries",
							"host": [
								"{{api_url}}{{api_namespace}}"
							],
							"path": [
								"glossaries",
								"{{glossary_id}}",
								"entries"
							]
						}
					},
					"response": []
				},
				{
					"name": "[GET] Glossary Entry - Get by Entry ID",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"method": "GET",
						"header": [],
						"body": {
							"mode": "urlencoded",
							"urlencoded": []
						},
						"url": {
							"raw": "{{api_url}}{{api_namespace}}/glossaries/{{glossary_id}}/entries/{{entry_id}}",
							"host": [
								"{{api_url}}{{api_namespace}}"
							],
							"path": [
								"glossaries",
								"{{glossary_id}}",
								"entries",
								"{{entry_id}}"
							]
						}
					},
					"response": []
				},
				{
					"name": "[PUT] Glossary Entry - Edit by Entry ID",
					"request": {
						"method": "PUT",
						"header": [],
						"body": {
							"mode": "urlencoded",
							"urlencoded": [
								{
									"key": "term",
									"value": "GlotPress",
									"type": "text"
								},
								{
									"key": "translation",
									"value": "GlotPress",
									"type": "text"
								},
								{
									"key": "part_of_speech",
									"value": "noun",
									"type": "text"
								},
								{
									"key": "comment",
									"value": "Odmieniamy: GlotPressa, GlotPressie... {{$timestamp}}",
									"type": "text"
								}
							]
						},
						"url": {
							"raw": "{{api_url}}{{api_namespace}}/glossaries/{{glossary_id}}/entries/{{entry_id}}",
							"host": [
								"{{api_url}}{{api_namespace}}"
							],
							"path": [
								"glossaries",
								"{{glossary_id}}",
								"entries",
								"{{entry_id}}"
							]
						}
					},
					"response": []
				},
				{
					"name": "[DELETE] Glossary Entry - Delete by Entry ID",
					"request": {
						"method": "DELETE",
						"header": [],
						"body": {
							"mode": "urlencoded",
							"urlencoded": []
						},
						"url": {
							"raw": "{{api_url}}{{api_namespace}}/glossaries/{{glossary_id}}/entries/{{entry_id}} ",
							"host": [
								"{{api_url}}{{api_namespace}}"
							],
							"path": [
								"glossaries",
								"{{glossary_id}}",
								"entries",
								"{{entry_id}} "
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "languages",
			"item": [
				{
					"name": "[GET] Languages",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{api_url}}{{api_namespace}}/languages",
							"host": [
								"{{api_url}}{{api_namespace}}"
							],
							"path": [
								"languages"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "originals",
			"item": [
				{
					"name": "[GET] Originals",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{api_url}}{{api_namespace}}/originals?project_id={{project_id}}",
							"host": [
								"{{api_url}}{{api_namespace}}"
							],
							"path": [
								"originals"
							],
							"query": [
								{
									"key": "project_id",
									"value": "{{project_id}}"
								},
								{
									"key": "page",
									"value": "2",
									"disabled": true
								},
								{
									"key": "per_page",
									"value": "5",
									"disabled": true
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "[GET] Original - by Original ID",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{api_url}}{{api_namespace}}/originals/{{original_id}}",
							"host": [
								"{{api_url}}{{api_namespace}}"
							],
							"path": [
								"originals",
								"{{original_id}}"
							]
						}
					},
					"response": []
				},
				{
					"name": "[DELETE] Original - Delete by Original ID",
					"request": {
						"method": "DELETE",
						"header": [],
						"url": {
							"raw": "{{api_url}}{{api_namespace}}/originals/{{original_id}}",
							"host": [
								"{{api_url}}{{api_namespace}}"
							],
							"path": [
								"originals",
								"{{original_id}}"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "projects",
			"item": [
				{
					"name": "[GET] Projects",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{api_url}}{{api_namespace}}/projects?parent_project_id=0",
							"host": [
								"{{api_url}}{{api_namespace}}"
							],
							"path": [
								"projects"
							],
							"query": [
								{
									"key": "parent_project_id",
									"value": "0"
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "[POST] Project - New",
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "urlencoded",
							"urlencoded": [
								{
									"key": "name",
									"value": "GP WordCamp Europe",
									"type": "text"
								},
								{
									"key": "slug",
									"value": "gp-wordcamp-europe",
									"type": "text"
								},
								{
									"key": "description",
									"value": "Learn something new about GlotPress and WordCamp Europe each time you visit the admin area.",
									"type": "text"
								},
								{
									"key": "source_url_template",
									"value": "https://github.com/meloniq/gp-wordcamp-europe/blob/master/%file%#L%line%",
									"type": "text"
								},
								{
									"key": "parent_project_id",
									"value": "0",
									"type": "text"
								},
								{
									"key": "active",
									"value": "1",
									"type": "text"
								}
							]
						},
						"url": {
							"raw": "{{api_url}}{{api_namespace}}/projects",
							"host": [
								"{{api_url}}{{api_namespace}}"
							],
							"path": [
								"projects"
							]
						}
					},
					"response": []
				},
				{
					"name": "[GET] Project - by Project ID",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{api_url}}{{api_namespace}}/projects/{{project_id}}",
							"host": [
								"{{api_url}}{{api_namespace}}"
							],
							"path": [
								"projects",
								"{{project_id}}"
							]
						}
					},
					"response": []
				},
				{
					"name": "[PUT] Project - Edit by Project ID",
					"request": {
						"method": "PUT",
						"header": [],
						"body": {
							"mode": "urlencoded",
							"urlencoded": [
								{
									"key": "name",
									"value": "GP WordCamp Europe - Edited {{$timestamp}}",
									"type": "text"
								},
								{
									"key": "slug",
									"value": "gp-wordcamp-europe",
									"type": "text"
								},
								{
									"key": "description",
									"value": "Learn something new about GlotPress and WordCamp Europe each time you visit the admin area.",
									"type": "text"
								},
								{
									"key": "source_url_template",
									"value": "https://github.com/meloniq/gp-wordcamp-europe/blob/master/%file%#L%line%",
									"type": "text"
								},
								{
									"key": "parent_project_id",
									"value": "0",
									"type": "text"
								},
								{
									"key": "active",
									"value": "1",
									"type": "text"
								}
							]
						},
						"url": {
							"raw": "{{api_url}}{{api_namespace}}/projects/{{project_id}}",
							"host": [
								"{{api_url}}{{api_namespace}}"
							],
							"path": [
								"projects",
								"{{project_id}}"
							]
						}
					},
					"response": []
				},
				{
					"name": "[DELETE] Project - Delete by Project ID",
					"request": {
						"method": "DELETE",
						"header": [],
						"url": {
							"raw": "{{api_url}}{{api_namespace}}/projects/{{project_id}}",
							"host": [
								"{{api_url}}{{api_namespace}}"
							],
							"path": [
								"projects",
								"{{project_id}}"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "projects/permissions",
			"item": [
				{
					"name": "[GET] Project Permissions by Project ID",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"method": "GET",
						"header": [],
						"body": {
							"mode": "urlencoded",
							"urlencoded": []
						},
						"url": {
							"raw": "{{api_url}}{{api_namespace}}/projects/{{project_id}}/permissions",
							"host": [
								"{{api_url}}{{api_namespace}}"
							],
							"path": [
								"projects",
								"{{project_id}}",
								"permissions"
							]
						}
					},
					"response": []
				},
				{
					"name": "[POST] Project Permissions - New - by Project ID",
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "urlencoded",
							"urlencoded": [
								{
									"key": "user_login",
									"value": "meloniq",
									"type": "text"
								},
								{
									"key": "locale_slug",
									"value": "{{locale}}",
									"type": "text"
								},
								{
									"key": "set_slug",
									"value": "default",
									"type": "text"
								}
							]
						},
						"url": {
							"raw": "{{api_url}}{{api_namespace}}/projects/{{project_id}}/permissions",
							"host": [
								"{{api_url}}{{api_namespace}}"
							],
							"path": [
								"projects",
								"{{project_id}}",
								"permissions"
							]
						}
					},
					"response": []
				},
				{
					"name": "[GET] Project Permissions - Get by Permission ID",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"method": "GET",
						"header": [],
						"body": {
							"mode": "urlencoded",
							"urlencoded": []
						},
						"url": {
							"raw": "{{api_url}}{{api_namespace}}/projects/{{project_id}}/permissions/{{permission_id}}",
							"host": [
								"{{api_url}}{{api_namespace}}"
							],
							"path": [
								"projects",
								"{{project_id}}",
								"permissions",
								"{{permission_id}}"
							]
						}
					},
					"response": []
				},
				{
					"name": "[DELETE] Project Permissions - Delete by Permission ID",
					"request": {
						"method": "DELETE",
						"header": [],
						"body": {
							"mode": "urlencoded",
							"urlencoded": []
						},
						"url": {
							"raw": "{{api_url}}{{api_namespace}}/projects/{{project_id}}/permissions/{{permission_id}}",
							"host": [
								"{{api_url}}{{api_namespace}}"
							],
							"path": [
								"projects",
								"{{project_id}}",
								"permissions",
								"{{permission_id}}"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "profile",
			"item": [
				{
					"name": "[GET] Profile - Me",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{api_url}}{{api_namespace}}/profile/me",
							"host": [
								"{{api_url}}{{api_namespace}}"
							],
							"path": [
								"profile",
								"me"
							]
						}
					},
					"response": []
				},
				{
					"name": "[GET] Profile - by User ID",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{api_url}}{{api_namespace}}/profile/{{user_id}}",
							"host": [
								"{{api_url}}{{api_namespace}}"
							],
							"path": [
								"profile",
								"{{user_id}}"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "translations",
			"item": [
				{
					"name": "[GET] Translations",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{api_url}}{{api_namespace}}/translations?project_id={{project_id}}&translation_set_id={{set_id}}",
							"host": [
								"{{api_url}}{{api_namespace}}"
							],
							"path": [
								"translations"
							],
							"query": [
								{
									"key": "project_id",
									"value": "{{project_id}}"
								},
								{
									"key": "translation_set_id",
									"value": "{{set_id}}"
								},
								{
									"key": "page",
									"value": "2",
									"disabled": true
								},
								{
									"key": "per_page",
									"value": "5",
									"disabled": true
								},
								{
									"key": "sort_by",
									"value": "priority",
									"disabled": true
								},
								{
									"key": "sort_order",
									"value": "desc",
									"disabled": true
								},
								{
									"key": "filters_term",
									"value": "Format",
									"disabled": true
								},
								{
									"key": "filters_case_sensitive",
									"value": "1",
									"disabled": true
								},
								{
									"key": "filters_term_scope",
									"value": "scope_any",
									"disabled": true
								},
								{
									"key": "filters_status",
									"value": "waiting",
									"disabled": true
								},
								{
									"key": "filters_options[]",
									"value": "with_plural",
									"disabled": true
								},
								{
									"key": "filters_options[]",
									"value": "with_context",
									"disabled": true
								},
								{
									"key": "filters_user_login",
									"value": "admin",
									"disabled": true
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "[POST] Translation - New",
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "urlencoded",
							"urlencoded": [
								{
									"key": "project_id",
									"value": "{{project_id}}",
									"type": "text"
								},
								{
									"key": "translation_set_id",
									"value": "{{set_id}}",
									"type": "text"
								},
								{
									"key": "original_id",
									"value": "{{original_id}}",
									"type": "text"
								},
								{
									"key": "status",
									"value": "waiting",
									"description": "current",
									"type": "text",
									"disabled": true
								},
								{
									"key": "translation_0",
									"value": "1 powiadomienie usunięte.",
									"type": "text"
								},
								{
									"key": "translation_1",
									"value": "2, 3, 4 powiadomienia usunięte.",
									"type": "text"
								},
								{
									"key": "translation_2",
									"value": "0, 5, 6 powiadomień usuniętych.",
									"type": "text"
								},
								{
									"key": "translation_3",
									"value": "xyz",
									"type": "text",
									"disabled": true
								},
								{
									"key": "translation_4",
									"value": "xyz",
									"type": "text",
									"disabled": true
								},
								{
									"key": "translation_5",
									"value": "xyz",
									"type": "text",
									"disabled": true
								}
							]
						},
						"url": {
							"raw": "{{api_url}}{{api_namespace}}/translations",
							"host": [
								"{{api_url}}{{api_namespace}}"
							],
							"path": [
								"translations"
							]
						}
					},
					"response": []
				},
				{
					"name": "[GET] Translation - Get by Translation ID",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{api_url}}{{api_namespace}}/translations/{{translation_id}}",
							"host": [
								"{{api_url}}{{api_namespace}}"
							],
							"path": [
								"translations",
								"{{translation_id}}"
							]
						}
					},
					"response": []
				},
				{
					"name": "[PUT] Translation - Edit by Translation ID",
					"request": {
						"method": "PUT",
						"header": [],
						"body": {
							"mode": "urlencoded",
							"urlencoded": [
								{
									"key": "project_id",
									"value": "{{project_id}}",
									"type": "text"
								},
								{
									"key": "translation_set_id",
									"value": "{{set_id}}",
									"type": "text"
								},
								{
									"key": "original_id",
									"value": "{{original_id}}",
									"type": "text"
								},
								{
									"key": "status",
									"value": "approve",
									"description": "reject, fuzzy, approve",
									"type": "text",
									"disabled": true
								},
								{
									"key": "translation_0",
									"value": "1 powiadomienie usunięte...",
									"type": "text"
								},
								{
									"key": "translation_1",
									"value": "2, 3, 4 powiadomienia usunięte...",
									"type": "text"
								},
								{
									"key": "translation_2",
									"value": "0, 5, 6 powiadomień usuniętych...",
									"type": "text"
								},
								{
									"key": "translation_3",
									"value": "xyz Edited {{$timestamp}}",
									"type": "text",
									"disabled": true
								},
								{
									"key": "translation_4",
									"value": "xyz Edited {{$timestamp}}",
									"type": "text",
									"disabled": true
								},
								{
									"key": "translation_5",
									"value": "xyz Edited {{$timestamp}}",
									"type": "text",
									"disabled": true
								}
							]
						},
						"url": {
							"raw": "{{api_url}}{{api_namespace}}/translations/{{translation_id}}",
							"host": [
								"{{api_url}}{{api_namespace}}"
							],
							"path": [
								"translations",
								"{{translation_id}}"
							]
						}
					},
					"response": []
				},
				{
					"name": "[DELETE] Translation - Delete by Translation ID",
					"request": {
						"method": "DELETE",
						"header": [],
						"url": {
							"raw": "{{api_url}}{{api_namespace}}/translations/{{translation_id}}",
							"host": [
								"{{api_url}}{{api_namespace}}"
							],
							"path": [
								"translations",
								"{{translation_id}}"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "translation-sets",
			"item": [
				{
					"name": "[GET] Translation Sets by Project ID",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"method": "GET",
						"header": [],
						"body": {
							"mode": "urlencoded",
							"urlencoded": []
						},
						"url": {
							"raw": "{{api_url}}{{api_namespace}}/translation-sets?project_id={{project_id}}",
							"host": [
								"{{api_url}}{{api_namespace}}"
							],
							"path": [
								"translation-sets"
							],
							"query": [
								{
									"key": "project_id",
									"value": "{{project_id}}"
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "[POST] Translation Set - New",
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "urlencoded",
							"urlencoded": [
								{
									"key": "locale",
									"value": "{{locale}}",
									"type": "text"
								},
								{
									"key": "name",
									"value": "Polish",
									"type": "text"
								},
								{
									"key": "slug",
									"value": "{{slug}}",
									"type": "text"
								},
								{
									"key": "project_id",
									"value": "{{project_id}}",
									"type": "text"
								}
							]
						},
						"url": {
							"raw": "{{api_url}}{{api_namespace}}/translation-sets",
							"host": [
								"{{api_url}}{{api_namespace}}"
							],
							"path": [
								"translation-sets"
							]
						}
					},
					"response": []
				},
				{
					"name": "[GET] Translation Set - Get by Set ID",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"method": "GET",
						"header": [],
						"body": {
							"mode": "urlencoded",
							"urlencoded": []
						},
						"url": {
							"raw": "{{api_url}}{{api_namespace}}/translation-sets/{{set_id}}",
							"host": [
								"{{api_url}}{{api_namespace}}"
							],
							"path": [
								"translation-sets",
								"{{set_id}}"
							]
						}
					},
					"response": []
				},
				{
					"name": "[PUT] Translation Set - Edit by Set ID",
					"request": {
						"method": "PUT",
						"header": [],
						"body": {
							"mode": "urlencoded",
							"urlencoded": [
								{
									"key": "locale",
									"value": "{{locale}}",
									"type": "text"
								},
								{
									"key": "name",
									"value": "Polish - Edited {{$timestamp}}",
									"type": "text"
								},
								{
									"key": "slug",
									"value": "{{slug}}",
									"type": "text"
								},
								{
									"key": "project_id",
									"value": "{{project_id}}",
									"type": "text"
								}
							]
						},
						"url": {
							"raw": "{{api_url}}{{api_namespace}}/translation-sets/{{set_id}}",
							"host": [
								"{{api_url}}{{api_namespace}}"
							],
							"path": [
								"translation-sets",
								"{{set_id}}"
							]
						}
					},
					"response": []
				},
				{
					"name": "[DELETE] Translation Set - Delete by Set ID",
					"request": {
						"method": "DELETE",
						"header": [],
						"url": {
							"raw": "{{api_url}}{{api_namespace}}/translation-sets/{{set_id}}",
							"host": [
								"{{api_url}}{{api_namespace}}"
							],
							"path": [
								"translation-sets",
								"{{set_id}}"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "[GET] Base - API availability",
			"request": {
				"method": "GET",
				"header": [],
				"url": {
					"raw": "{{api_url}}{{api_namespace}}",
					"host": [
						"{{api_url}}{{api_namespace}}"
					]
				}
			},
			"response": []
		}
	],
	"auth": {
		"type": "basic",
		"basic": [
			{
				"key": "password",
				"value": "{{api_password}}",
				"type": "string"
			},
			{
				"key": "username",
				"value": "{{api_username}}",
				"type": "string"
			}
		]
	},
	"event": [
		{
			"listen": "prerequest",
			"script": {
				"type": "text/javascript",
				"packages": {},
				"requests": {},
				"exec": [
					""
				]
			}
		},
		{
			"listen": "test",
			"script": {
				"type": "text/javascript",
				"packages": {},
				"requests": {},
				"exec": [
					""
				]
			}
		}
	]
}
