{
	"info": {
		"_postman_id": "85529b4a-4c35-4298-843b-134b7ef4fc2d",
		"name": "JPA-Overview",
		"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
		"_exporter_id": "2792755",
		"_collection_link": "https://dark-astronaut-617408.postman.co/workspace/New-Team-Workspace~3d6dc054-5fa0-4371-8614-8fe18b85b8fe/collection/2792755-85529b4a-4c35-4298-843b-134b7ef4fc2d?action=share&source=collection_link&creator=2792755"
	},
	"item": [
		{
			"name": "get-usuarios",
			"request": {
				"method": "GET",
				"header": [
					{
						"key": "Accept",
						"value": "application/json"
					}
				],
				"url": {
					"raw": "http://localhost:8080/api/usuarios",
					"protocol": "http",
					"host": [
						"localhost"
					],
					"port": "8080",
					"path": [
						"api",
						"usuarios"
					]
				},
				"description": "Generated from cURL: curl -X GET \"http://localhost:8080/api/usuarios\" -H \"Accept: application/json\""
			},
			"response": []
		},
		{
			"name": "get-usuario-username",
			"request": {
				"method": "GET",
				"header": [
					{
						"key": "Accept",
						"value": "application/json"
					}
				],
				"url": {
					"raw": "http://localhost:8080/api/usuarios?username=diego",
					"protocol": "http",
					"host": [
						"localhost"
					],
					"port": "8080",
					"path": [
						"api",
						"usuarios"
					],
					"query": [
						{
							"key": "username",
							"value": "diego"
						}
					]
				},
				"description": "Generated from cURL: curl -X GET \"http://localhost:8080/api/usuarios?dni=12345678\" -H \"Accept: application/json\""
			},
			"response": []
		},
		{
			"name": "crear-usuario",
			"request": {
				"method": "POST",
				"header": [
					{
						"key": "Content-Type",
						"value": "application/json"
					}
				],
				"body": {
					"mode": "raw",
					"raw": "{\n  \"username\": \"juanperez\",\n  \"email\": \"juanperez@example.com\",\n  \"nombre\": \"Juan\",\n  \"apellido\": \"Pérez\",\n  \"rol\": \"ADMIN\",\n  \"password\": \"12345678\",\n  \"dni\": \"33333333\"\n}",
					"options": {
						"raw": {
							"language": "json"
						}
					}
				},
				"url": {
					"raw": "http://localhost:8080/api/usuarios",
					"protocol": "http",
					"host": [
						"localhost"
					],
					"port": "8080",
					"path": [
						"api",
						"usuarios"
					]
				},
				"description": "Generated from cURL: curl --location 'http://localhost:8080/api/usuarios' \\\n--header 'Content-Type: application/json' \\\n--data '{\n  \"username\": \"juanperez\",\n  \"email\": \"juanperez@example.com\",\n  \"nombre\": \"Juan\",\n  \"apellido\": \"Pérez\",\n  \"rol\": \"ADMIN\"\n}'"
			},
			"response": []
		}
	]
}