{
	"info": {
		"_postman_id": "laravel-moloni-collection",
		"name": "Laravel Moloni",
		"description": "Coleccao Postman para testar a API Moloni atraves do pacote Laravel Moloni (digitaldev-lx/laravel-moloni).\n\nConfiguracao:\n1. Edite as variaveis da coleccao com as suas credenciais OAuth2\n2. Execute o request 'Get Access Token' para obter o token\n3. Copie o access_token para a variavel da coleccao\n4. Configure o company_id com o ID da sua empresa",
		"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
	},
	"variable": [
		{
			"key": "base_url",
			"value": "https://api.moloni.pt/v1",
			"type": "string"
		},
		{
			"key": "access_token",
			"value": "your-access-token",
			"type": "string"
		},
		{
			"key": "company_id",
			"value": "0",
			"type": "string"
		},
		{
			"key": "client_id",
			"value": "your-client-id",
			"type": "string"
		},
		{
			"key": "client_secret",
			"value": "your-client-secret",
			"type": "string"
		},
		{
			"key": "username",
			"value": "your-email@example.com",
			"type": "string"
		},
		{
			"key": "password",
			"value": "your-password",
			"type": "string"
		},
		{
			"key": "refresh_token",
			"value": "",
			"type": "string"
		}
	],
	"item": [
		{
			"name": "Authentication",
			"description": "Autenticacao OAuth2 com a API Moloni.",
			"item": [
				{
					"name": "Get Access Token",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"var jsonData = pm.response.json();",
									"if (jsonData.access_token) {",
									"    pm.collectionVariables.set('access_token', jsonData.access_token);",
									"    pm.collectionVariables.set('refresh_token', jsonData.refresh_token);",
									"}"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/x-www-form-urlencoded"
							}
						],
						"body": {
							"mode": "urlencoded",
							"urlencoded": [
								{
									"key": "grant_type",
									"value": "password"
								},
								{
									"key": "client_id",
									"value": "{{client_id}}"
								},
								{
									"key": "client_secret",
									"value": "{{client_secret}}"
								},
								{
									"key": "username",
									"value": "{{username}}"
								},
								{
									"key": "password",
									"value": "{{password}}"
								}
							]
						},
						"url": {
							"raw": "{{base_url}}/grant/",
							"host": ["{{base_url}}"],
							"path": ["grant", ""]
						},
						"description": "Obtem access_token e refresh_token via OAuth2 password grant. O token e guardado automaticamente nas variaveis da coleccao."
					},
					"response": []
				},
				{
					"name": "Refresh Token",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"var jsonData = pm.response.json();",
									"if (jsonData.access_token) {",
									"    pm.collectionVariables.set('access_token', jsonData.access_token);",
									"    pm.collectionVariables.set('refresh_token', jsonData.refresh_token);",
									"}"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/x-www-form-urlencoded"
							}
						],
						"body": {
							"mode": "urlencoded",
							"urlencoded": [
								{
									"key": "grant_type",
									"value": "refresh_token"
								},
								{
									"key": "client_id",
									"value": "{{client_id}}"
								},
								{
									"key": "client_secret",
									"value": "{{client_secret}}"
								},
								{
									"key": "refresh_token",
									"value": "{{refresh_token}}"
								}
							]
						},
						"url": {
							"raw": "{{base_url}}/grant/",
							"host": ["{{base_url}}"],
							"path": ["grant", ""]
						},
						"description": "Renova o access_token usando o refresh_token. O novo token e guardado automaticamente."
					},
					"response": []
				}
			]
		},
		{
			"name": "Companies",
			"description": "Gestao de empresas.",
			"item": [
				{
					"name": "Get All Companies",
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "urlencoded",
							"urlencoded": [
								{
									"key": "json",
									"value": "true"
								},
								{
									"key": "human_errors",
									"value": "true"
								}
							]
						},
						"url": {
							"raw": "{{base_url}}/companies/getAll/?access_token={{access_token}}",
							"host": ["{{base_url}}"],
							"path": ["companies", "getAll", ""],
							"query": [
								{
									"key": "access_token",
									"value": "{{access_token}}"
								}
							]
						},
						"description": "Lista todas as empresas associadas a conta."
					},
					"response": []
				},
				{
					"name": "Get One Company",
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "urlencoded",
							"urlencoded": [
								{
									"key": "json",
									"value": "true"
								},
								{
									"key": "human_errors",
									"value": "true"
								},
								{
									"key": "company_id",
									"value": "{{company_id}}"
								}
							]
						},
						"url": {
							"raw": "{{base_url}}/companies/getOne/?access_token={{access_token}}",
							"host": ["{{base_url}}"],
							"path": ["companies", "getOne", ""],
							"query": [
								{
									"key": "access_token",
									"value": "{{access_token}}"
								}
							]
						},
						"description": "Obtem detalhes de uma empresa especifica."
					},
					"response": []
				}
			]
		},
		{
			"name": "Customers",
			"description": "Gestao de clientes. CRUD completo, pesquisa por NIF, email, nome.",
			"item": [
				{
					"name": "Get All Customers",
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "urlencoded",
							"urlencoded": [
								{ "key": "json", "value": "true" },
								{ "key": "human_errors", "value": "true" },
								{ "key": "company_id", "value": "{{company_id}}" }
							]
						},
						"url": {
							"raw": "{{base_url}}/customers/getAll/?access_token={{access_token}}",
							"host": ["{{base_url}}"],
							"path": ["customers", "getAll", ""],
							"query": [{ "key": "access_token", "value": "{{access_token}}" }]
						}
					},
					"response": []
				},
				{
					"name": "Get One Customer",
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "urlencoded",
							"urlencoded": [
								{ "key": "json", "value": "true" },
								{ "key": "human_errors", "value": "true" },
								{ "key": "company_id", "value": "{{company_id}}" },
								{ "key": "customer_id", "value": "0", "description": "ID do cliente" }
							]
						},
						"url": {
							"raw": "{{base_url}}/customers/getOne/?access_token={{access_token}}",
							"host": ["{{base_url}}"],
							"path": ["customers", "getOne", ""],
							"query": [{ "key": "access_token", "value": "{{access_token}}" }]
						}
					},
					"response": []
				},
				{
					"name": "Get Customer by VAT",
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "urlencoded",
							"urlencoded": [
								{ "key": "json", "value": "true" },
								{ "key": "human_errors", "value": "true" },
								{ "key": "company_id", "value": "{{company_id}}" },
								{ "key": "vat", "value": "123456789", "description": "NIF do cliente" }
							]
						},
						"url": {
							"raw": "{{base_url}}/customers/getByVat/?access_token={{access_token}}",
							"host": ["{{base_url}}"],
							"path": ["customers", "getByVat", ""],
							"query": [{ "key": "access_token", "value": "{{access_token}}" }]
						}
					},
					"response": []
				},
				{
					"name": "Get Customer by Email",
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "urlencoded",
							"urlencoded": [
								{ "key": "json", "value": "true" },
								{ "key": "human_errors", "value": "true" },
								{ "key": "company_id", "value": "{{company_id}}" },
								{ "key": "email", "value": "cliente@example.com" }
							]
						},
						"url": {
							"raw": "{{base_url}}/customers/getByEmail/?access_token={{access_token}}",
							"host": ["{{base_url}}"],
							"path": ["customers", "getByEmail", ""],
							"query": [{ "key": "access_token", "value": "{{access_token}}" }]
						}
					},
					"response": []
				},
				{
					"name": "Search Customers",
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "urlencoded",
							"urlencoded": [
								{ "key": "json", "value": "true" },
								{ "key": "human_errors", "value": "true" },
								{ "key": "company_id", "value": "{{company_id}}" },
								{ "key": "search", "value": "Joao", "description": "Termo de pesquisa" }
							]
						},
						"url": {
							"raw": "{{base_url}}/customers/getBySearch/?access_token={{access_token}}",
							"host": ["{{base_url}}"],
							"path": ["customers", "getBySearch", ""],
							"query": [{ "key": "access_token", "value": "{{access_token}}" }]
						}
					},
					"response": []
				},
				{
					"name": "Count Customers",
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "urlencoded",
							"urlencoded": [
								{ "key": "json", "value": "true" },
								{ "key": "human_errors", "value": "true" },
								{ "key": "company_id", "value": "{{company_id}}" }
							]
						},
						"url": {
							"raw": "{{base_url}}/customers/count/?access_token={{access_token}}",
							"host": ["{{base_url}}"],
							"path": ["customers", "count", ""],
							"query": [{ "key": "access_token", "value": "{{access_token}}" }]
						}
					},
					"response": []
				},
				{
					"name": "Insert Customer",
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "urlencoded",
							"urlencoded": [
								{ "key": "json", "value": "true" },
								{ "key": "human_errors", "value": "true" },
								{ "key": "company_id", "value": "{{company_id}}" },
								{ "key": "vat", "value": "123456789", "description": "NIF" },
								{ "key": "number", "value": "C001", "description": "Numero de cliente" },
								{ "key": "name", "value": "Joao Silva", "description": "Nome" },
								{ "key": "email", "value": "joao@example.com" },
								{ "key": "phone", "value": "912345678" },
								{ "key": "address", "value": "Rua Exemplo, 123" },
								{ "key": "city", "value": "Lisboa" },
								{ "key": "zip_code", "value": "1000-001" },
								{ "key": "country_id", "value": "1", "description": "ID do pais (1 = Portugal)" }
							]
						},
						"url": {
							"raw": "{{base_url}}/customers/insert/?access_token={{access_token}}",
							"host": ["{{base_url}}"],
							"path": ["customers", "insert", ""],
							"query": [{ "key": "access_token", "value": "{{access_token}}" }]
						},
						"description": "Cria um novo cliente."
					},
					"response": []
				},
				{
					"name": "Update Customer",
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "urlencoded",
							"urlencoded": [
								{ "key": "json", "value": "true" },
								{ "key": "human_errors", "value": "true" },
								{ "key": "company_id", "value": "{{company_id}}" },
								{ "key": "customer_id", "value": "0", "description": "ID do cliente a atualizar" },
								{ "key": "name", "value": "Joao Silva Atualizado" },
								{ "key": "email", "value": "joao.novo@example.com" }
							]
						},
						"url": {
							"raw": "{{base_url}}/customers/update/?access_token={{access_token}}",
							"host": ["{{base_url}}"],
							"path": ["customers", "update", ""],
							"query": [{ "key": "access_token", "value": "{{access_token}}" }]
						}
					},
					"response": []
				},
				{
					"name": "Delete Customer",
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "urlencoded",
							"urlencoded": [
								{ "key": "json", "value": "true" },
								{ "key": "human_errors", "value": "true" },
								{ "key": "company_id", "value": "{{company_id}}" },
								{ "key": "customer_id", "value": "0", "description": "ID do cliente a eliminar" }
							]
						},
						"url": {
							"raw": "{{base_url}}/customers/delete/?access_token={{access_token}}",
							"host": ["{{base_url}}"],
							"path": ["customers", "delete", ""],
							"query": [{ "key": "access_token", "value": "{{access_token}}" }]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Products",
			"description": "Gestao de produtos. CRUD completo, pesquisa por referencia, EAN, nome.",
			"item": [
				{
					"name": "Get All Products",
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "urlencoded",
							"urlencoded": [
								{ "key": "json", "value": "true" },
								{ "key": "human_errors", "value": "true" },
								{ "key": "company_id", "value": "{{company_id}}" }
							]
						},
						"url": {
							"raw": "{{base_url}}/products/getAll/?access_token={{access_token}}",
							"host": ["{{base_url}}"],
							"path": ["products", "getAll", ""],
							"query": [{ "key": "access_token", "value": "{{access_token}}" }]
						}
					},
					"response": []
				},
				{
					"name": "Get One Product",
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "urlencoded",
							"urlencoded": [
								{ "key": "json", "value": "true" },
								{ "key": "human_errors", "value": "true" },
								{ "key": "company_id", "value": "{{company_id}}" },
								{ "key": "product_id", "value": "0" }
							]
						},
						"url": {
							"raw": "{{base_url}}/products/getOne/?access_token={{access_token}}",
							"host": ["{{base_url}}"],
							"path": ["products", "getOne", ""],
							"query": [{ "key": "access_token", "value": "{{access_token}}" }]
						}
					},
					"response": []
				},
				{
					"name": "Get Product by Reference",
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "urlencoded",
							"urlencoded": [
								{ "key": "json", "value": "true" },
								{ "key": "human_errors", "value": "true" },
								{ "key": "company_id", "value": "{{company_id}}" },
								{ "key": "reference", "value": "PROD-001" }
							]
						},
						"url": {
							"raw": "{{base_url}}/products/getByReference/?access_token={{access_token}}",
							"host": ["{{base_url}}"],
							"path": ["products", "getByReference", ""],
							"query": [{ "key": "access_token", "value": "{{access_token}}" }]
						}
					},
					"response": []
				},
				{
					"name": "Get Product by EAN",
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "urlencoded",
							"urlencoded": [
								{ "key": "json", "value": "true" },
								{ "key": "human_errors", "value": "true" },
								{ "key": "company_id", "value": "{{company_id}}" },
								{ "key": "ean", "value": "5601234567890" }
							]
						},
						"url": {
							"raw": "{{base_url}}/products/getByEAN/?access_token={{access_token}}",
							"host": ["{{base_url}}"],
							"path": ["products", "getByEAN", ""],
							"query": [{ "key": "access_token", "value": "{{access_token}}" }]
						}
					},
					"response": []
				},
				{
					"name": "Search Products",
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "urlencoded",
							"urlencoded": [
								{ "key": "json", "value": "true" },
								{ "key": "human_errors", "value": "true" },
								{ "key": "company_id", "value": "{{company_id}}" },
								{ "key": "search", "value": "website" }
							]
						},
						"url": {
							"raw": "{{base_url}}/products/getBySearch/?access_token={{access_token}}",
							"host": ["{{base_url}}"],
							"path": ["products", "getBySearch", ""],
							"query": [{ "key": "access_token", "value": "{{access_token}}" }]
						}
					},
					"response": []
				},
				{
					"name": "Count Products",
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "urlencoded",
							"urlencoded": [
								{ "key": "json", "value": "true" },
								{ "key": "human_errors", "value": "true" },
								{ "key": "company_id", "value": "{{company_id}}" }
							]
						},
						"url": {
							"raw": "{{base_url}}/products/count/?access_token={{access_token}}",
							"host": ["{{base_url}}"],
							"path": ["products", "count", ""],
							"query": [{ "key": "access_token", "value": "{{access_token}}" }]
						}
					},
					"response": []
				},
				{
					"name": "Insert Product",
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "urlencoded",
							"urlencoded": [
								{ "key": "json", "value": "true" },
								{ "key": "human_errors", "value": "true" },
								{ "key": "company_id", "value": "{{company_id}}" },
								{ "key": "name", "value": "Website Corporativo" },
								{ "key": "reference", "value": "PROD-001" },
								{ "key": "type", "value": "2", "description": "1=Produto, 2=Servico" },
								{ "key": "category_id", "value": "0" },
								{ "key": "unit_id", "value": "0", "description": "ID da unidade de medida" },
								{ "key": "price", "value": "1500.00" },
								{ "key": "has_stock", "value": "0", "description": "0=Sem stock, 1=Com stock" }
							]
						},
						"url": {
							"raw": "{{base_url}}/products/insert/?access_token={{access_token}}",
							"host": ["{{base_url}}"],
							"path": ["products", "insert", ""],
							"query": [{ "key": "access_token", "value": "{{access_token}}" }]
						}
					},
					"response": []
				},
				{
					"name": "Update Product",
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "urlencoded",
							"urlencoded": [
								{ "key": "json", "value": "true" },
								{ "key": "human_errors", "value": "true" },
								{ "key": "company_id", "value": "{{company_id}}" },
								{ "key": "product_id", "value": "0" },
								{ "key": "name", "value": "Website Corporativo Premium" },
								{ "key": "price", "value": "2000.00" }
							]
						},
						"url": {
							"raw": "{{base_url}}/products/update/?access_token={{access_token}}",
							"host": ["{{base_url}}"],
							"path": ["products", "update", ""],
							"query": [{ "key": "access_token", "value": "{{access_token}}" }]
						}
					},
					"response": []
				},
				{
					"name": "Delete Product",
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "urlencoded",
							"urlencoded": [
								{ "key": "json", "value": "true" },
								{ "key": "human_errors", "value": "true" },
								{ "key": "company_id", "value": "{{company_id}}" },
								{ "key": "product_id", "value": "0" }
							]
						},
						"url": {
							"raw": "{{base_url}}/products/delete/?access_token={{access_token}}",
							"host": ["{{base_url}}"],
							"path": ["products", "delete", ""],
							"query": [{ "key": "access_token", "value": "{{access_token}}" }]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Product Categories",
			"description": "Gestao de categorias de produtos.",
			"item": [
				{
					"name": "Get All Categories",
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "urlencoded",
							"urlencoded": [
								{ "key": "json", "value": "true" },
								{ "key": "human_errors", "value": "true" },
								{ "key": "company_id", "value": "{{company_id}}" }
							]
						},
						"url": {
							"raw": "{{base_url}}/productCategories/getAll/?access_token={{access_token}}",
							"host": ["{{base_url}}"],
							"path": ["productCategories", "getAll", ""],
							"query": [{ "key": "access_token", "value": "{{access_token}}" }]
						}
					},
					"response": []
				},
				{
					"name": "Insert Category",
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "urlencoded",
							"urlencoded": [
								{ "key": "json", "value": "true" },
								{ "key": "human_errors", "value": "true" },
								{ "key": "company_id", "value": "{{company_id}}" },
								{ "key": "name", "value": "Servicos Web" },
								{ "key": "parent_id", "value": "0", "description": "0 para categoria raiz" }
							]
						},
						"url": {
							"raw": "{{base_url}}/productCategories/insert/?access_token={{access_token}}",
							"host": ["{{base_url}}"],
							"path": ["productCategories", "insert", ""],
							"query": [{ "key": "access_token", "value": "{{access_token}}" }]
						}
					},
					"response": []
				},
				{
					"name": "Delete Category",
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "urlencoded",
							"urlencoded": [
								{ "key": "json", "value": "true" },
								{ "key": "human_errors", "value": "true" },
								{ "key": "company_id", "value": "{{company_id}}" },
								{ "key": "category_id", "value": "0" }
							]
						},
						"url": {
							"raw": "{{base_url}}/productCategories/delete/?access_token={{access_token}}",
							"host": ["{{base_url}}"],
							"path": ["productCategories", "delete", ""],
							"query": [{ "key": "access_token", "value": "{{access_token}}" }]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Invoices",
			"description": "Faturas. Mesma estrutura aplica-se a Receipts, Credit Notes, Debit Notes, Simplified Invoices, Invoice Receipts, Delivery Notes, Bills of Lading, Waybills e Estimates.",
			"item": [
				{
					"name": "Get All Invoices",
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "urlencoded",
							"urlencoded": [
								{ "key": "json", "value": "true" },
								{ "key": "human_errors", "value": "true" },
								{ "key": "company_id", "value": "{{company_id}}" }
							]
						},
						"url": {
							"raw": "{{base_url}}/invoices/getAll/?access_token={{access_token}}",
							"host": ["{{base_url}}"],
							"path": ["invoices", "getAll", ""],
							"query": [{ "key": "access_token", "value": "{{access_token}}" }]
						}
					},
					"response": []
				},
				{
					"name": "Get One Invoice",
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "urlencoded",
							"urlencoded": [
								{ "key": "json", "value": "true" },
								{ "key": "human_errors", "value": "true" },
								{ "key": "company_id", "value": "{{company_id}}" },
								{ "key": "document_id", "value": "0" }
							]
						},
						"url": {
							"raw": "{{base_url}}/invoices/getOne/?access_token={{access_token}}",
							"host": ["{{base_url}}"],
							"path": ["invoices", "getOne", ""],
							"query": [{ "key": "access_token", "value": "{{access_token}}" }]
						}
					},
					"response": []
				},
				{
					"name": "Insert Invoice",
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "urlencoded",
							"urlencoded": [
								{ "key": "json", "value": "true" },
								{ "key": "human_errors", "value": "true" },
								{ "key": "company_id", "value": "{{company_id}}" },
								{ "key": "document_set_id", "value": "0", "description": "ID da serie de documentos" },
								{ "key": "customer_id", "value": "0", "description": "ID do cliente" },
								{ "key": "date", "value": "2026-04-07", "description": "Data do documento (Y-m-d)" },
								{ "key": "expiration_date", "value": "2026-05-07", "description": "Data de vencimento (Y-m-d)" },
								{ "key": "products[0][product_id]", "value": "0", "description": "ID do produto" },
								{ "key": "products[0][qty]", "value": "1", "description": "Quantidade" },
								{ "key": "products[0][price]", "value": "1500.00", "description": "Preco unitario" },
								{ "key": "payments[0][payment_method_id]", "value": "0", "description": "ID do metodo de pagamento" },
								{ "key": "payments[0][value]", "value": "1500.00" },
								{ "key": "payments[0][date]", "value": "2026-04-07" }
							]
						},
						"url": {
							"raw": "{{base_url}}/invoices/insert/?access_token={{access_token}}",
							"host": ["{{base_url}}"],
							"path": ["invoices", "insert", ""],
							"query": [{ "key": "access_token", "value": "{{access_token}}" }]
						},
						"description": "Cria uma nova fatura com produtos e pagamentos."
					},
					"response": []
				},
				{
					"name": "Count Invoices",
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "urlencoded",
							"urlencoded": [
								{ "key": "json", "value": "true" },
								{ "key": "human_errors", "value": "true" },
								{ "key": "company_id", "value": "{{company_id}}" }
							]
						},
						"url": {
							"raw": "{{base_url}}/invoices/count/?access_token={{access_token}}",
							"host": ["{{base_url}}"],
							"path": ["invoices", "count", ""],
							"query": [{ "key": "access_token", "value": "{{access_token}}" }]
						}
					},
					"response": []
				},
				{
					"name": "Get Invoice PDF Link",
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "urlencoded",
							"urlencoded": [
								{ "key": "json", "value": "true" },
								{ "key": "human_errors", "value": "true" },
								{ "key": "company_id", "value": "{{company_id}}" },
								{ "key": "document_id", "value": "0" }
							]
						},
						"url": {
							"raw": "{{base_url}}/invoices/getPDFLink/?access_token={{access_token}}",
							"host": ["{{base_url}}"],
							"path": ["invoices", "getPDFLink", ""],
							"query": [{ "key": "access_token", "value": "{{access_token}}" }]
						},
						"description": "Obtem o link para download do PDF da fatura."
					},
					"response": []
				},
				{
					"name": "Delete Invoice",
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "urlencoded",
							"urlencoded": [
								{ "key": "json", "value": "true" },
								{ "key": "human_errors", "value": "true" },
								{ "key": "company_id", "value": "{{company_id}}" },
								{ "key": "document_id", "value": "0" }
							]
						},
						"url": {
							"raw": "{{base_url}}/invoices/delete/?access_token={{access_token}}",
							"host": ["{{base_url}}"],
							"path": ["invoices", "delete", ""],
							"query": [{ "key": "access_token", "value": "{{access_token}}" }]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Receipts",
			"description": "Recibos.",
			"item": [
				{
					"name": "Get All Receipts",
					"request": {
						"method": "POST",
						"header": [],
						"body": { "mode": "urlencoded", "urlencoded": [{ "key": "json", "value": "true" }, { "key": "human_errors", "value": "true" }, { "key": "company_id", "value": "{{company_id}}" }] },
						"url": { "raw": "{{base_url}}/receipts/getAll/?access_token={{access_token}}", "host": ["{{base_url}}"], "path": ["receipts", "getAll", ""], "query": [{ "key": "access_token", "value": "{{access_token}}" }] }
					},
					"response": []
				},
				{
					"name": "Get One Receipt",
					"request": {
						"method": "POST",
						"header": [],
						"body": { "mode": "urlencoded", "urlencoded": [{ "key": "json", "value": "true" }, { "key": "human_errors", "value": "true" }, { "key": "company_id", "value": "{{company_id}}" }, { "key": "document_id", "value": "0" }] },
						"url": { "raw": "{{base_url}}/receipts/getOne/?access_token={{access_token}}", "host": ["{{base_url}}"], "path": ["receipts", "getOne", ""], "query": [{ "key": "access_token", "value": "{{access_token}}" }] }
					},
					"response": []
				},
				{
					"name": "Insert Receipt",
					"request": {
						"method": "POST",
						"header": [],
						"body": { "mode": "urlencoded", "urlencoded": [{ "key": "json", "value": "true" }, { "key": "human_errors", "value": "true" }, { "key": "company_id", "value": "{{company_id}}" }, { "key": "document_set_id", "value": "0" }, { "key": "customer_id", "value": "0" }, { "key": "date", "value": "2026-04-07" }, { "key": "expiration_date", "value": "2026-05-07" }, { "key": "products[0][product_id]", "value": "0" }, { "key": "products[0][qty]", "value": "1" }, { "key": "products[0][price]", "value": "100.00" }] },
						"url": { "raw": "{{base_url}}/receipts/insert/?access_token={{access_token}}", "host": ["{{base_url}}"], "path": ["receipts", "insert", ""], "query": [{ "key": "access_token", "value": "{{access_token}}" }] }
					},
					"response": []
				},
				{
					"name": "Get Receipt PDF Link",
					"request": {
						"method": "POST",
						"header": [],
						"body": { "mode": "urlencoded", "urlencoded": [{ "key": "json", "value": "true" }, { "key": "human_errors", "value": "true" }, { "key": "company_id", "value": "{{company_id}}" }, { "key": "document_id", "value": "0" }] },
						"url": { "raw": "{{base_url}}/receipts/getPDFLink/?access_token={{access_token}}", "host": ["{{base_url}}"], "path": ["receipts", "getPDFLink", ""], "query": [{ "key": "access_token", "value": "{{access_token}}" }] }
					},
					"response": []
				}
			]
		},
		{
			"name": "Credit Notes",
			"description": "Notas de credito.",
			"item": [
				{
					"name": "Get All Credit Notes",
					"request": {
						"method": "POST",
						"header": [],
						"body": { "mode": "urlencoded", "urlencoded": [{ "key": "json", "value": "true" }, { "key": "human_errors", "value": "true" }, { "key": "company_id", "value": "{{company_id}}" }] },
						"url": { "raw": "{{base_url}}/creditNotes/getAll/?access_token={{access_token}}", "host": ["{{base_url}}"], "path": ["creditNotes", "getAll", ""], "query": [{ "key": "access_token", "value": "{{access_token}}" }] }
					},
					"response": []
				},
				{
					"name": "Insert Credit Note",
					"request": {
						"method": "POST",
						"header": [],
						"body": { "mode": "urlencoded", "urlencoded": [{ "key": "json", "value": "true" }, { "key": "human_errors", "value": "true" }, { "key": "company_id", "value": "{{company_id}}" }, { "key": "document_set_id", "value": "0" }, { "key": "customer_id", "value": "0" }, { "key": "date", "value": "2026-04-07" }, { "key": "expiration_date", "value": "2026-05-07" }, { "key": "products[0][product_id]", "value": "0" }, { "key": "products[0][qty]", "value": "1" }, { "key": "products[0][price]", "value": "100.00" }] },
						"url": { "raw": "{{base_url}}/creditNotes/insert/?access_token={{access_token}}", "host": ["{{base_url}}"], "path": ["creditNotes", "insert", ""], "query": [{ "key": "access_token", "value": "{{access_token}}" }] }
					},
					"response": []
				},
				{
					"name": "Get Credit Note PDF Link",
					"request": {
						"method": "POST",
						"header": [],
						"body": { "mode": "urlencoded", "urlencoded": [{ "key": "json", "value": "true" }, { "key": "human_errors", "value": "true" }, { "key": "company_id", "value": "{{company_id}}" }, { "key": "document_id", "value": "0" }] },
						"url": { "raw": "{{base_url}}/creditNotes/getPDFLink/?access_token={{access_token}}", "host": ["{{base_url}}"], "path": ["creditNotes", "getPDFLink", ""], "query": [{ "key": "access_token", "value": "{{access_token}}" }] }
					},
					"response": []
				}
			]
		},
		{
			"name": "Simplified Invoices",
			"description": "Faturas simplificadas.",
			"item": [
				{
					"name": "Get All Simplified Invoices",
					"request": {
						"method": "POST",
						"header": [],
						"body": { "mode": "urlencoded", "urlencoded": [{ "key": "json", "value": "true" }, { "key": "human_errors", "value": "true" }, { "key": "company_id", "value": "{{company_id}}" }] },
						"url": { "raw": "{{base_url}}/simplifiedInvoices/getAll/?access_token={{access_token}}", "host": ["{{base_url}}"], "path": ["simplifiedInvoices", "getAll", ""], "query": [{ "key": "access_token", "value": "{{access_token}}" }] }
					},
					"response": []
				},
				{
					"name": "Insert Simplified Invoice",
					"request": {
						"method": "POST",
						"header": [],
						"body": { "mode": "urlencoded", "urlencoded": [{ "key": "json", "value": "true" }, { "key": "human_errors", "value": "true" }, { "key": "company_id", "value": "{{company_id}}" }, { "key": "document_set_id", "value": "0" }, { "key": "customer_id", "value": "0" }, { "key": "date", "value": "2026-04-07" }, { "key": "expiration_date", "value": "2026-05-07" }, { "key": "products[0][product_id]", "value": "0" }, { "key": "products[0][qty]", "value": "1" }, { "key": "products[0][price]", "value": "100.00" }] },
						"url": { "raw": "{{base_url}}/simplifiedInvoices/insert/?access_token={{access_token}}", "host": ["{{base_url}}"], "path": ["simplifiedInvoices", "insert", ""], "query": [{ "key": "access_token", "value": "{{access_token}}" }] }
					},
					"response": []
				},
				{
					"name": "Get Simplified Invoice PDF Link",
					"request": {
						"method": "POST",
						"header": [],
						"body": { "mode": "urlencoded", "urlencoded": [{ "key": "json", "value": "true" }, { "key": "human_errors", "value": "true" }, { "key": "company_id", "value": "{{company_id}}" }, { "key": "document_id", "value": "0" }] },
						"url": { "raw": "{{base_url}}/simplifiedInvoices/getPDFLink/?access_token={{access_token}}", "host": ["{{base_url}}"], "path": ["simplifiedInvoices", "getPDFLink", ""], "query": [{ "key": "access_token", "value": "{{access_token}}" }] }
					},
					"response": []
				}
			]
		},
		{
			"name": "Invoice Receipts",
			"description": "Fatura-recibos.",
			"item": [
				{
					"name": "Get All Invoice Receipts",
					"request": {
						"method": "POST",
						"header": [],
						"body": { "mode": "urlencoded", "urlencoded": [{ "key": "json", "value": "true" }, { "key": "human_errors", "value": "true" }, { "key": "company_id", "value": "{{company_id}}" }] },
						"url": { "raw": "{{base_url}}/invoiceReceipts/getAll/?access_token={{access_token}}", "host": ["{{base_url}}"], "path": ["invoiceReceipts", "getAll", ""], "query": [{ "key": "access_token", "value": "{{access_token}}" }] }
					},
					"response": []
				},
				{
					"name": "Insert Invoice Receipt",
					"request": {
						"method": "POST",
						"header": [],
						"body": { "mode": "urlencoded", "urlencoded": [{ "key": "json", "value": "true" }, { "key": "human_errors", "value": "true" }, { "key": "company_id", "value": "{{company_id}}" }, { "key": "document_set_id", "value": "0" }, { "key": "customer_id", "value": "0" }, { "key": "date", "value": "2026-04-07" }, { "key": "expiration_date", "value": "2026-05-07" }, { "key": "products[0][product_id]", "value": "0" }, { "key": "products[0][qty]", "value": "1" }, { "key": "products[0][price]", "value": "100.00" }] },
						"url": { "raw": "{{base_url}}/invoiceReceipts/insert/?access_token={{access_token}}", "host": ["{{base_url}}"], "path": ["invoiceReceipts", "insert", ""], "query": [{ "key": "access_token", "value": "{{access_token}}" }] }
					},
					"response": []
				},
				{
					"name": "Get Invoice Receipt PDF Link",
					"request": {
						"method": "POST",
						"header": [],
						"body": { "mode": "urlencoded", "urlencoded": [{ "key": "json", "value": "true" }, { "key": "human_errors", "value": "true" }, { "key": "company_id", "value": "{{company_id}}" }, { "key": "document_id", "value": "0" }] },
						"url": { "raw": "{{base_url}}/invoiceReceipts/getPDFLink/?access_token={{access_token}}", "host": ["{{base_url}}"], "path": ["invoiceReceipts", "getPDFLink", ""], "query": [{ "key": "access_token", "value": "{{access_token}}" }] }
					},
					"response": []
				}
			]
		},
		{
			"name": "Debit Notes",
			"description": "Notas de debito.",
			"item": [
				{
					"name": "Get All Debit Notes",
					"request": {
						"method": "POST",
						"header": [],
						"body": { "mode": "urlencoded", "urlencoded": [{ "key": "json", "value": "true" }, { "key": "human_errors", "value": "true" }, { "key": "company_id", "value": "{{company_id}}" }] },
						"url": { "raw": "{{base_url}}/debitNotes/getAll/?access_token={{access_token}}", "host": ["{{base_url}}"], "path": ["debitNotes", "getAll", ""], "query": [{ "key": "access_token", "value": "{{access_token}}" }] }
					},
					"response": []
				},
				{
					"name": "Insert Debit Note",
					"request": {
						"method": "POST",
						"header": [],
						"body": { "mode": "urlencoded", "urlencoded": [{ "key": "json", "value": "true" }, { "key": "human_errors", "value": "true" }, { "key": "company_id", "value": "{{company_id}}" }, { "key": "document_set_id", "value": "0" }, { "key": "customer_id", "value": "0" }, { "key": "date", "value": "2026-04-07" }, { "key": "expiration_date", "value": "2026-05-07" }, { "key": "products[0][product_id]", "value": "0" }, { "key": "products[0][qty]", "value": "1" }, { "key": "products[0][price]", "value": "100.00" }] },
						"url": { "raw": "{{base_url}}/debitNotes/insert/?access_token={{access_token}}", "host": ["{{base_url}}"], "path": ["debitNotes", "insert", ""], "query": [{ "key": "access_token", "value": "{{access_token}}" }] }
					},
					"response": []
				}
			]
		},
		{
			"name": "Delivery Notes",
			"description": "Guias de remessa.",
			"item": [
				{
					"name": "Get All Delivery Notes",
					"request": {
						"method": "POST",
						"header": [],
						"body": { "mode": "urlencoded", "urlencoded": [{ "key": "json", "value": "true" }, { "key": "human_errors", "value": "true" }, { "key": "company_id", "value": "{{company_id}}" }] },
						"url": { "raw": "{{base_url}}/deliveryNotes/getAll/?access_token={{access_token}}", "host": ["{{base_url}}"], "path": ["deliveryNotes", "getAll", ""], "query": [{ "key": "access_token", "value": "{{access_token}}" }] }
					},
					"response": []
				},
				{
					"name": "Insert Delivery Note",
					"request": {
						"method": "POST",
						"header": [],
						"body": { "mode": "urlencoded", "urlencoded": [{ "key": "json", "value": "true" }, { "key": "human_errors", "value": "true" }, { "key": "company_id", "value": "{{company_id}}" }, { "key": "document_set_id", "value": "0" }, { "key": "customer_id", "value": "0" }, { "key": "date", "value": "2026-04-07" }, { "key": "expiration_date", "value": "2026-05-07" }, { "key": "products[0][product_id]", "value": "0" }, { "key": "products[0][qty]", "value": "1" }, { "key": "products[0][price]", "value": "100.00" }] },
						"url": { "raw": "{{base_url}}/deliveryNotes/insert/?access_token={{access_token}}", "host": ["{{base_url}}"], "path": ["deliveryNotes", "insert", ""], "query": [{ "key": "access_token", "value": "{{access_token}}" }] }
					},
					"response": []
				}
			]
		},
		{
			"name": "Waybills",
			"description": "Guias de transporte.",
			"item": [
				{
					"name": "Get All Waybills",
					"request": {
						"method": "POST",
						"header": [],
						"body": { "mode": "urlencoded", "urlencoded": [{ "key": "json", "value": "true" }, { "key": "human_errors", "value": "true" }, { "key": "company_id", "value": "{{company_id}}" }] },
						"url": { "raw": "{{base_url}}/waybills/getAll/?access_token={{access_token}}", "host": ["{{base_url}}"], "path": ["waybills", "getAll", ""], "query": [{ "key": "access_token", "value": "{{access_token}}" }] }
					},
					"response": []
				},
				{
					"name": "Insert Waybill",
					"request": {
						"method": "POST",
						"header": [],
						"body": { "mode": "urlencoded", "urlencoded": [{ "key": "json", "value": "true" }, { "key": "human_errors", "value": "true" }, { "key": "company_id", "value": "{{company_id}}" }, { "key": "document_set_id", "value": "0" }, { "key": "customer_id", "value": "0" }, { "key": "date", "value": "2026-04-07" }, { "key": "expiration_date", "value": "2026-05-07" }, { "key": "products[0][product_id]", "value": "0" }, { "key": "products[0][qty]", "value": "1" }, { "key": "products[0][price]", "value": "100.00" }] },
						"url": { "raw": "{{base_url}}/waybills/insert/?access_token={{access_token}}", "host": ["{{base_url}}"], "path": ["waybills", "insert", ""], "query": [{ "key": "access_token", "value": "{{access_token}}" }] }
					},
					"response": []
				}
			]
		},
		{
			"name": "Bills of Lading",
			"description": "Cartas de porte.",
			"item": [
				{
					"name": "Get All Bills of Lading",
					"request": {
						"method": "POST",
						"header": [],
						"body": { "mode": "urlencoded", "urlencoded": [{ "key": "json", "value": "true" }, { "key": "human_errors", "value": "true" }, { "key": "company_id", "value": "{{company_id}}" }] },
						"url": { "raw": "{{base_url}}/billsOfLading/getAll/?access_token={{access_token}}", "host": ["{{base_url}}"], "path": ["billsOfLading", "getAll", ""], "query": [{ "key": "access_token", "value": "{{access_token}}" }] }
					},
					"response": []
				},
				{
					"name": "Insert Bill of Lading",
					"request": {
						"method": "POST",
						"header": [],
						"body": { "mode": "urlencoded", "urlencoded": [{ "key": "json", "value": "true" }, { "key": "human_errors", "value": "true" }, { "key": "company_id", "value": "{{company_id}}" }, { "key": "document_set_id", "value": "0" }, { "key": "customer_id", "value": "0" }, { "key": "date", "value": "2026-04-07" }, { "key": "expiration_date", "value": "2026-05-07" }, { "key": "products[0][product_id]", "value": "0" }, { "key": "products[0][qty]", "value": "1" }, { "key": "products[0][price]", "value": "100.00" }] },
						"url": { "raw": "{{base_url}}/billsOfLading/insert/?access_token={{access_token}}", "host": ["{{base_url}}"], "path": ["billsOfLading", "insert", ""], "query": [{ "key": "access_token", "value": "{{access_token}}" }] }
					},
					"response": []
				}
			]
		},
		{
			"name": "Estimates",
			"description": "Orcamentos.",
			"item": [
				{
					"name": "Get All Estimates",
					"request": {
						"method": "POST",
						"header": [],
						"body": { "mode": "urlencoded", "urlencoded": [{ "key": "json", "value": "true" }, { "key": "human_errors", "value": "true" }, { "key": "company_id", "value": "{{company_id}}" }] },
						"url": { "raw": "{{base_url}}/estimates/getAll/?access_token={{access_token}}", "host": ["{{base_url}}"], "path": ["estimates", "getAll", ""], "query": [{ "key": "access_token", "value": "{{access_token}}" }] }
					},
					"response": []
				},
				{
					"name": "Insert Estimate",
					"request": {
						"method": "POST",
						"header": [],
						"body": { "mode": "urlencoded", "urlencoded": [{ "key": "json", "value": "true" }, { "key": "human_errors", "value": "true" }, { "key": "company_id", "value": "{{company_id}}" }, { "key": "document_set_id", "value": "0" }, { "key": "customer_id", "value": "0" }, { "key": "date", "value": "2026-04-07" }, { "key": "expiration_date", "value": "2026-05-07" }, { "key": "products[0][product_id]", "value": "0" }, { "key": "products[0][qty]", "value": "1" }, { "key": "products[0][price]", "value": "100.00" }] },
						"url": { "raw": "{{base_url}}/estimates/insert/?access_token={{access_token}}", "host": ["{{base_url}}"], "path": ["estimates", "insert", ""], "query": [{ "key": "access_token", "value": "{{access_token}}" }] }
					},
					"response": []
				},
				{
					"name": "Get Estimate PDF Link",
					"request": {
						"method": "POST",
						"header": [],
						"body": { "mode": "urlencoded", "urlencoded": [{ "key": "json", "value": "true" }, { "key": "human_errors", "value": "true" }, { "key": "company_id", "value": "{{company_id}}" }, { "key": "document_id", "value": "0" }] },
						"url": { "raw": "{{base_url}}/estimates/getPDFLink/?access_token={{access_token}}", "host": ["{{base_url}}"], "path": ["estimates", "getPDFLink", ""], "query": [{ "key": "access_token", "value": "{{access_token}}" }] }
					},
					"response": []
				}
			]
		},
		{
			"name": "Documents (Generic)",
			"description": "Endpoint generico para consulta de todos os tipos de documentos.",
			"item": [
				{
					"name": "Get All Document Types",
					"request": {
						"method": "POST",
						"header": [],
						"body": { "mode": "urlencoded", "urlencoded": [{ "key": "json", "value": "true" }, { "key": "human_errors", "value": "true" }] },
						"url": { "raw": "{{base_url}}/documents/getAllDocumentTypes/?access_token={{access_token}}", "host": ["{{base_url}}"], "path": ["documents", "getAllDocumentTypes", ""], "query": [{ "key": "access_token", "value": "{{access_token}}" }] }
					},
					"response": []
				},
				{
					"name": "Get All Documents",
					"request": {
						"method": "POST",
						"header": [],
						"body": { "mode": "urlencoded", "urlencoded": [{ "key": "json", "value": "true" }, { "key": "human_errors", "value": "true" }, { "key": "company_id", "value": "{{company_id}}" }] },
						"url": { "raw": "{{base_url}}/documents/getAll/?access_token={{access_token}}", "host": ["{{base_url}}"], "path": ["documents", "getAll", ""], "query": [{ "key": "access_token", "value": "{{access_token}}" }] }
					},
					"response": []
				}
			]
		},
		{
			"name": "Configuration",
			"description": "Recursos de configuracao da empresa: impostos, metodos de pagamento, series de documentos, armazens, unidades, etc.",
			"item": [
				{
					"name": "Get All Taxes",
					"request": {
						"method": "POST",
						"header": [],
						"body": { "mode": "urlencoded", "urlencoded": [{ "key": "json", "value": "true" }, { "key": "human_errors", "value": "true" }, { "key": "company_id", "value": "{{company_id}}" }] },
						"url": { "raw": "{{base_url}}/taxes/getAll/?access_token={{access_token}}", "host": ["{{base_url}}"], "path": ["taxes", "getAll", ""], "query": [{ "key": "access_token", "value": "{{access_token}}" }] }
					},
					"response": []
				},
				{
					"name": "Get All Payment Methods",
					"request": {
						"method": "POST",
						"header": [],
						"body": { "mode": "urlencoded", "urlencoded": [{ "key": "json", "value": "true" }, { "key": "human_errors", "value": "true" }, { "key": "company_id", "value": "{{company_id}}" }] },
						"url": { "raw": "{{base_url}}/paymentMethods/getAll/?access_token={{access_token}}", "host": ["{{base_url}}"], "path": ["paymentMethods", "getAll", ""], "query": [{ "key": "access_token", "value": "{{access_token}}" }] }
					},
					"response": []
				},
				{
					"name": "Get All Document Sets",
					"request": {
						"method": "POST",
						"header": [],
						"body": { "mode": "urlencoded", "urlencoded": [{ "key": "json", "value": "true" }, { "key": "human_errors", "value": "true" }, { "key": "company_id", "value": "{{company_id}}" }] },
						"url": { "raw": "{{base_url}}/documentSets/getAll/?access_token={{access_token}}", "host": ["{{base_url}}"], "path": ["documentSets", "getAll", ""], "query": [{ "key": "access_token", "value": "{{access_token}}" }] }
					},
					"response": []
				},
				{
					"name": "Get All Warehouses",
					"request": {
						"method": "POST",
						"header": [],
						"body": { "mode": "urlencoded", "urlencoded": [{ "key": "json", "value": "true" }, { "key": "human_errors", "value": "true" }, { "key": "company_id", "value": "{{company_id}}" }] },
						"url": { "raw": "{{base_url}}/warehouses/getAll/?access_token={{access_token}}", "host": ["{{base_url}}"], "path": ["warehouses", "getAll", ""], "query": [{ "key": "access_token", "value": "{{access_token}}" }] }
					},
					"response": []
				},
				{
					"name": "Get All Measurement Units",
					"request": {
						"method": "POST",
						"header": [],
						"body": { "mode": "urlencoded", "urlencoded": [{ "key": "json", "value": "true" }, { "key": "human_errors", "value": "true" }, { "key": "company_id", "value": "{{company_id}}" }] },
						"url": { "raw": "{{base_url}}/measurementUnits/getAll/?access_token={{access_token}}", "host": ["{{base_url}}"], "path": ["measurementUnits", "getAll", ""], "query": [{ "key": "access_token", "value": "{{access_token}}" }] }
					},
					"response": []
				},
				{
					"name": "Get All Maturity Dates",
					"request": {
						"method": "POST",
						"header": [],
						"body": { "mode": "urlencoded", "urlencoded": [{ "key": "json", "value": "true" }, { "key": "human_errors", "value": "true" }, { "key": "company_id", "value": "{{company_id}}" }] },
						"url": { "raw": "{{base_url}}/maturityDates/getAll/?access_token={{access_token}}", "host": ["{{base_url}}"], "path": ["maturityDates", "getAll", ""], "query": [{ "key": "access_token", "value": "{{access_token}}" }] }
					},
					"response": []
				},
				{
					"name": "Get All Delivery Methods",
					"request": {
						"method": "POST",
						"header": [],
						"body": { "mode": "urlencoded", "urlencoded": [{ "key": "json", "value": "true" }, { "key": "human_errors", "value": "true" }, { "key": "company_id", "value": "{{company_id}}" }] },
						"url": { "raw": "{{base_url}}/deliveryMethods/getAll/?access_token={{access_token}}", "host": ["{{base_url}}"], "path": ["deliveryMethods", "getAll", ""], "query": [{ "key": "access_token", "value": "{{access_token}}" }] }
					},
					"response": []
				},
				{
					"name": "Get All Bank Accounts",
					"request": {
						"method": "POST",
						"header": [],
						"body": { "mode": "urlencoded", "urlencoded": [{ "key": "json", "value": "true" }, { "key": "human_errors", "value": "true" }, { "key": "company_id", "value": "{{company_id}}" }] },
						"url": { "raw": "{{base_url}}/bankAccounts/getAll/?access_token={{access_token}}", "host": ["{{base_url}}"], "path": ["bankAccounts", "getAll", ""], "query": [{ "key": "access_token", "value": "{{access_token}}" }] }
					},
					"response": []
				}
			]
		},
		{
			"name": "Global Resources",
			"description": "Recursos globais (nao dependem de company_id): paises, moedas, idiomas, isencoes fiscais, zonas fiscais.",
			"item": [
				{
					"name": "Get All Countries",
					"request": {
						"method": "POST",
						"header": [],
						"body": { "mode": "urlencoded", "urlencoded": [{ "key": "json", "value": "true" }, { "key": "human_errors", "value": "true" }] },
						"url": { "raw": "{{base_url}}/countries/getAll/?access_token={{access_token}}", "host": ["{{base_url}}"], "path": ["countries", "getAll", ""], "query": [{ "key": "access_token", "value": "{{access_token}}" }] }
					},
					"response": []
				},
				{
					"name": "Get All Currencies",
					"request": {
						"method": "POST",
						"header": [],
						"body": { "mode": "urlencoded", "urlencoded": [{ "key": "json", "value": "true" }, { "key": "human_errors", "value": "true" }] },
						"url": { "raw": "{{base_url}}/currencies/getAll/?access_token={{access_token}}", "host": ["{{base_url}}"], "path": ["currencies", "getAll", ""], "query": [{ "key": "access_token", "value": "{{access_token}}" }] }
					},
					"response": []
				},
				{
					"name": "Get All Languages",
					"request": {
						"method": "POST",
						"header": [],
						"body": { "mode": "urlencoded", "urlencoded": [{ "key": "json", "value": "true" }, { "key": "human_errors", "value": "true" }] },
						"url": { "raw": "{{base_url}}/languages/getAll/?access_token={{access_token}}", "host": ["{{base_url}}"], "path": ["languages", "getAll", ""], "query": [{ "key": "access_token", "value": "{{access_token}}" }] }
					},
					"response": []
				},
				{
					"name": "Get All Tax Exemptions",
					"request": {
						"method": "POST",
						"header": [],
						"body": { "mode": "urlencoded", "urlencoded": [{ "key": "json", "value": "true" }, { "key": "human_errors", "value": "true" }] },
						"url": { "raw": "{{base_url}}/taxExemptions/getAll/?access_token={{access_token}}", "host": ["{{base_url}}"], "path": ["taxExemptions", "getAll", ""], "query": [{ "key": "access_token", "value": "{{access_token}}" }] }
					},
					"response": []
				},
				{
					"name": "Get All Fiscal Zones",
					"request": {
						"method": "POST",
						"header": [],
						"body": { "mode": "urlencoded", "urlencoded": [{ "key": "json", "value": "true" }, { "key": "human_errors", "value": "true" }, { "key": "country_id", "value": "1", "description": "ID do pais (1 = Portugal)" }] },
						"url": { "raw": "{{base_url}}/fiscalZones/getAll/?access_token={{access_token}}", "host": ["{{base_url}}"], "path": ["fiscalZones", "getAll", ""], "query": [{ "key": "access_token", "value": "{{access_token}}" }] }
					},
					"response": []
				}
			]
		}
	]
}