MirrorAPI/Orius Mirror.postman_collection.json

1463 lines
No EOL
48 KiB
JSON

{
"info": {
"_postman_id": "c127ccdc-0035-4608-98a0-6589732bb931",
"name": "Orius Mirror",
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
"_exporter_id": "32142370"
},
"item": [
{
"name": "Usuarios",
"item": [
{
"name": "Autenticar",
"event": [
{
"listen": "test",
"script": {
"exec": [
"const response = pm.response.json();\r",
"\r",
"// Salvando em variáveis da *collection*\r",
"pm.collectionVariables.set(\"BearerToken\", response.data.token);\r",
"\r",
"pm.test(\"Status code é 201 ou 200\", function () {\r",
" pm.expect(pm.response.code).to.be.oneOf([200, 201]);\r",
"});\r",
"\r",
"pm.test(\"Resposta contém ID ou confirmação\", function () {\r",
" const jsonData = pm.response.json();\r",
" pm.expect(jsonData).to.have.any.keys(\"id\", \"message\", \"status\");\r",
"});\r",
"\r",
"pm.test(\"Mensagem indica sucesso\", function () {\r",
" const jsonData = pm.response.json();\r",
" pm.expect(jsonData.message || \"\").to.match(/sucesso|criado|registrado/i);\r",
"});"
],
"type": "text/javascript",
"packages": {},
"requests": {}
}
}
],
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\r\n \"username\": \"orius\",\r\n \"password\": \"123123\"\r\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/usuario/authenticate",
"host": [
"{{url}}"
],
"path": [
"usuario",
"authenticate"
]
}
},
"response": []
},
{
"name": "Usuário logado",
"event": [
{
"listen": "test",
"script": {
"exec": [
""
],
"type": "text/javascript",
"packages": {},
"requests": {}
}
}
],
"protocolProfileBehavior": {
"disableBodyPruning": true
},
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{BearerToken}}",
"type": "string"
}
]
},
"method": "GET",
"header": [],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/usuario/me",
"host": [
"{{url}}"
],
"path": [
"usuario",
"me"
]
}
},
"response": []
},
{
"name": "Localizar e-mail",
"event": [
{
"listen": "test",
"script": {
"exec": [
""
],
"type": "text/javascript",
"packages": {},
"requests": {}
}
}
],
"protocolProfileBehavior": {
"disableBodyPruning": true
},
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{BearerToken}}",
"type": "string"
}
]
},
"method": "GET",
"header": [],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/usuario/email/dev@oriustecnologia.com.br",
"host": [
"{{url}}"
],
"path": [
"usuario",
"email",
"dev@oriustecnologia.com.br"
]
}
},
"response": []
},
{
"name": "Localizar ID",
"event": [
{
"listen": "test",
"script": {
"exec": [
""
],
"type": "text/javascript",
"packages": {},
"requests": {}
}
}
],
"protocolProfileBehavior": {
"disableBodyPruning": true
},
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{BearerToken}}",
"type": "string"
}
]
},
"method": "GET",
"header": [],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/usuario/1",
"host": [
"{{url}}"
],
"path": [
"usuario",
"1"
]
}
},
"response": []
},
{
"name": "Listagem",
"event": [
{
"listen": "test",
"script": {
"exec": [
""
],
"type": "text/javascript",
"packages": {},
"requests": {}
}
}
],
"protocolProfileBehavior": {
"disableBodyPruning": true
},
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{BearerToken}}",
"type": "string"
}
]
},
"method": "GET",
"header": [],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/usuario/",
"host": [
"{{url}}"
],
"path": [
"usuario",
""
]
}
},
"response": []
},
{
"name": "Cadastrar",
"event": [
{
"listen": "test",
"script": {
"exec": [
""
],
"type": "text/javascript",
"packages": {},
"requests": {}
}
}
],
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{BearerToken}}",
"type": "string"
}
]
},
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\r\n \"nome\": \"{{$randomFullName}}\",\r\n \"email\": \"{{$randomEmail}}\",\r\n \"username\": \"{{$randomUserName}}\",\r\n \"password\": \"{{$randomPassword}}\",\r\n \"status\": \"A\",\r\n \"user_id_create\": 1\r\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/usuario/",
"host": [
"{{url}}"
],
"path": [
"usuario",
""
]
}
},
"response": []
},
{
"name": "Atualizar",
"event": [
{
"listen": "test",
"script": {
"exec": [
""
],
"type": "text/javascript",
"packages": {},
"requests": {}
}
}
],
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{BearerToken}}",
"type": "string"
}
]
},
"method": "PUT",
"header": [],
"body": {
"mode": "raw",
"raw": "{\r\n \"nome\": \"{{$randomFullName}}\",\r\n \"email\": \"{{$randomEmail}}\",\r\n \"username\": \"{{$randomUserName}}\",\r\n \"password\": \"{{$randomPassword}}\",\r\n \"status\": \"A\",\r\n \"user_id_update\": 1\r\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/usuario/18",
"host": [
"{{url}}"
],
"path": [
"usuario",
"18"
]
}
},
"response": []
},
{
"name": "Deletar",
"event": [
{
"listen": "test",
"script": {
"exec": [
""
],
"type": "text/javascript",
"packages": {},
"requests": {}
}
}
],
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{BearerToken}}",
"type": "string"
}
]
},
"method": "DELETE",
"header": [],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/usuario/3",
"host": [
"{{url}}"
],
"path": [
"usuario",
"3"
]
}
},
"response": []
}
]
},
{
"name": "Ato Documento",
"item": [
{
"name": "Listagem",
"event": [
{
"listen": "test",
"script": {
"exec": [
""
],
"type": "text/javascript",
"packages": {},
"requests": {}
}
}
],
"protocolProfileBehavior": {
"disableBodyPruning": true
},
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{BearerToken}}",
"type": "string"
}
]
},
"method": "GET",
"header": [],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/ato_documento/",
"host": [
"{{url}}"
],
"path": [
"ato_documento",
""
]
}
},
"response": []
},
{
"name": "Cadastrar",
"event": [
{
"listen": "test",
"script": {
"exec": [
""
],
"type": "text/javascript",
"packages": {},
"requests": {}
}
}
],
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{BearerToken}}",
"type": "string"
}
]
},
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\r\n \"ato_principal_id\": 1,\r\n \"url\": \"https://google.com\",\r\n \"nome_documento\": \"{{$randomFullName}}\",\r\n \"tipo_documento\": \"ESCRITURA COMPRA E VENDA\"\r\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/ato_documento/",
"host": [
"{{url}}"
],
"path": [
"ato_documento",
""
]
}
},
"response": []
},
{
"name": "Atualizar",
"event": [
{
"listen": "test",
"script": {
"exec": [
""
],
"type": "text/javascript",
"packages": {},
"requests": {}
}
}
],
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{BearerToken}}",
"type": "string"
}
]
},
"method": "PUT",
"header": [],
"body": {
"mode": "raw",
"raw": "{\r\n \"ato_principal_id\": 1,\r\n \"url\": \"https://google.com\",\r\n \"nome_documento\": \"{{$randomFullName}}\",\r\n \"tipo_documento\": \"PDF\"\r\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/ato_documento/12",
"host": [
"{{url}}"
],
"path": [
"ato_documento",
"12"
]
}
},
"response": []
},
{
"name": "Localizar Ato Principal",
"event": [
{
"listen": "test",
"script": {
"exec": [
""
],
"type": "text/javascript",
"packages": {},
"requests": {}
}
}
],
"protocolProfileBehavior": {
"disableBodyPruning": true
},
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{BearerToken}}",
"type": "string"
}
]
},
"method": "GET",
"header": [],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/ato_documento/ato_principal/1",
"host": [
"{{url}}"
],
"path": [
"ato_documento",
"ato_principal",
"1"
]
}
},
"response": []
},
{
"name": "Localizar ID",
"event": [
{
"listen": "test",
"script": {
"exec": [
""
],
"type": "text/javascript",
"packages": {},
"requests": {}
}
}
],
"protocolProfileBehavior": {
"disableBodyPruning": true
},
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{BearerToken}}",
"type": "string"
}
]
},
"method": "GET",
"header": [],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/ato_documento/3",
"host": [
"{{url}}"
],
"path": [
"ato_documento",
"3"
]
}
},
"response": []
},
{
"name": "Deletar",
"event": [
{
"listen": "test",
"script": {
"exec": [
""
],
"type": "text/javascript",
"packages": {},
"requests": {}
}
}
],
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{BearerToken}}",
"type": "string"
}
]
},
"method": "DELETE",
"header": [],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/ato_documento/7",
"host": [
"{{url}}"
],
"path": [
"ato_documento",
"7"
]
}
},
"response": []
}
]
},
{
"name": "Ato Parte",
"item": [
{
"name": "Listagem",
"event": [
{
"listen": "test",
"script": {
"exec": [
""
],
"type": "text/javascript",
"packages": {},
"requests": {}
}
}
],
"protocolProfileBehavior": {
"disableBodyPruning": true
},
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{BearerToken}}",
"type": "string"
}
]
},
"method": "GET",
"header": [],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/ato_parte/",
"host": [
"{{url}}"
],
"path": [
"ato_parte",
""
]
}
},
"response": []
},
{
"name": "Cadastrar",
"event": [
{
"listen": "test",
"script": {
"exec": [
""
],
"type": "text/javascript",
"packages": {},
"requests": {}
}
}
],
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{BearerToken}}",
"type": "string"
}
]
},
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\r\n \"ato_principal_id\": 1,\r\n \"nome\": \"{{$randomFullName}}\",\r\n \"cpf_cnpj\": \"11352091038\",\r\n \"telefone\": \"{{$randomPhoneNumber}}\"\r\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/ato_parte/",
"host": [
"{{url}}"
],
"path": [
"ato_parte",
""
]
}
},
"response": []
},
{
"name": "Atualizar",
"event": [
{
"listen": "test",
"script": {
"exec": [
""
],
"type": "text/javascript",
"packages": {},
"requests": {}
}
}
],
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{BearerToken}}",
"type": "string"
}
]
},
"method": "PUT",
"header": [],
"body": {
"mode": "raw",
"raw": "{\r\n \"ato_principal_id\": 1,\r\n \"nome\": \"{{$randomFullName}}\",\r\n \"cpf_cnpj\": \"11352091038\",\r\n \"telefone\": \"{{$randomAlphaNumeric}}\"\r\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/ato_parte/16",
"host": [
"{{url}}"
],
"path": [
"ato_parte",
"16"
]
}
},
"response": []
},
{
"name": "Localizar Ato Principal",
"event": [
{
"listen": "test",
"script": {
"exec": [
""
],
"type": "text/javascript",
"packages": {},
"requests": {}
}
}
],
"protocolProfileBehavior": {
"disableBodyPruning": true
},
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{BearerToken}}",
"type": "string"
}
]
},
"method": "GET",
"header": [],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/ato_parte/ato_principal/1",
"host": [
"{{url}}"
],
"path": [
"ato_parte",
"ato_principal",
"1"
]
}
},
"response": []
},
{
"name": "Localizar ID",
"event": [
{
"listen": "test",
"script": {
"exec": [
""
],
"type": "text/javascript",
"packages": {},
"requests": {}
}
}
],
"protocolProfileBehavior": {
"disableBodyPruning": true
},
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{BearerToken}}",
"type": "string"
}
]
},
"method": "GET",
"header": [],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/ato_parte/11",
"host": [
"{{url}}"
],
"path": [
"ato_parte",
"11"
]
}
},
"response": []
},
{
"name": "Deletar",
"event": [
{
"listen": "test",
"script": {
"exec": [
""
],
"type": "text/javascript",
"packages": {},
"requests": {}
}
}
],
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{BearerToken}}",
"type": "string"
}
]
},
"method": "DELETE",
"header": [],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/ato_parte/2",
"host": [
"{{url}}"
],
"path": [
"ato_parte",
"2"
]
}
},
"response": []
}
]
},
{
"name": "Ato Principal",
"item": [
{
"name": "Listagem",
"event": [
{
"listen": "test",
"script": {
"exec": [
""
],
"type": "text/javascript",
"packages": {},
"requests": {}
}
}
],
"protocolProfileBehavior": {
"disableBodyPruning": true
},
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{BearerToken}}",
"type": "string"
}
]
},
"method": "GET",
"header": [],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/ato/",
"host": [
"{{url}}"
],
"path": [
"ato",
""
]
}
},
"response": []
},
{
"name": "Cadastrar",
"event": [
{
"listen": "test",
"script": {
"exec": [
""
],
"type": "text/javascript",
"packages": {},
"requests": {}
}
}
],
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{BearerToken}}",
"type": "string"
}
]
},
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\r\n \"identificacao_pedido_cgj\": {{randomNumber}},\r\n \"tipo_ato\": {{randomNumber}},\r\n \"codigo_selo\": \"{{$randomAlphaNumeric}}{{$randomAlphaNumeric}}\",\r\n \"codigo_ato\": \"{{$randomAlphaNumeric}}{{randomNumber}}\",\r\n \"nome_civil_ato\": \"{{$randomFullName}}\",\r\n \"nome_serventuario_praticou_ato\": \"{{$randomFullName}}\",\r\n \"data_solicitacao\": \"2025-10-21 15:30:00\",\r\n \"ip_maquina\": \"{{$randomIP}}\",\r\n \"inteiro_teor\": \"Texto do inteiro teor\",\r\n \"valor_entrada\": {{$randomPrice}},\r\n \"emolumento\": {{$randomPrice}},\r\n \"taxa_judiciaria\": {{$randomPrice}},\r\n \"fundos_estaduais\": {{$randomPrice}},\r\n \"protocolo_protesto\": \"PROT-2025-{{randomNumber}}\",\r\n \"protocolo_imovel\": \"IMOV-2025-{{randomNumber}}\"\r\n}\r\n",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/ato/",
"host": [
"{{url}}"
],
"path": [
"ato",
""
]
}
},
"response": []
},
{
"name": "Cadastrar Multiplos",
"event": [
{
"listen": "test",
"script": {
"exec": [
""
],
"type": "text/javascript",
"packages": {},
"requests": {}
}
}
],
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{BearerToken}}",
"type": "string"
}
]
},
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "[\r\n {\r\n \"identificacao_pedido_cgj\": {{randomNumber}},\r\n \"tipo_ato\": {{randomNumber}},\r\n \"codigo_selo\": \"{{$randomColor}}{{$randomAlphaNumeric}}{{$randomAlphaNumeric}}\",\r\n \"codigo_ato\": \"{{$randomColor}}{{$randomAlphaNumeric}}{{randomNumber}}\",\r\n \"nome_civil_ato\": \"{{$randomFullName}}\",\r\n \"nome_serventuario_praticou_ato\": \"{{$randomFullName}}\",\r\n \"data_solicitacao\": \"2025-10-21 15:30:00\",\r\n \"ip_maquina\": \"{{$randomIP}}\",\r\n \"inteiro_teor\": \"Texto do inteiro teor\",\r\n \"valor_entrada\": {{$randomPrice}},\r\n \"emolumento\": {{$randomPrice}},\r\n \"taxa_judiciaria\": {{$randomPrice}},\r\n \"fundos_estaduais\": {{$randomPrice}},\r\n \"protocolo_protesto\": \"PROT-2025-{{randomNumber}}\",\r\n \"protocolo_imovel\": \"IMOV-2025-{{randomNumber}}\",\r\n \"atos_vinculados\": [\r\n {\r\n \"identificacao_pedido_cgj\": {{randomNumber}},\r\n \"tipo_ato\": {{randomNumber}},\r\n \"codigo_selo\": \"{{$randomColor}}{{$randomAlphaNumeric}}{{$randomAlphaNumeric}}\",\r\n \"codigo_ato\": \"{{$randomColor}}{{$randomAlphaNumeric}}{{randomNumber}}\",\r\n \"nome_civil_ato\": \"{{$randomFullName}}\",\r\n \"nome_serventuario_praticou_ato\": \"{{$randomFullName}}\",\r\n \"data_solicitacao\": \"2025-10-21 15:30:00\",\r\n \"ip_maquina\": \"{{$randomIP}}\",\r\n \"inteiro_teor\": \"Texto do inteiro teor\",\r\n \"valor_entrada\": {{$randomPrice}},\r\n \"emolumento\": {{$randomPrice}},\r\n \"taxa_judiciaria\": {{$randomPrice}},\r\n \"fundos_estaduais\": {{$randomPrice}},\r\n \"protocolo_protesto\": \"PROT-2025-{{randomNumber}}\",\r\n \"protocolo_imovel\": \"IMOV-2025-{{randomNumber}}\",\r\n \"ato_partes\": [\r\n {\r\n \"nome\": \"{{$randomFullName}}\",\r\n \"telefone\": \"{{$randomPhoneNumber}}\",\r\n \"cpf_cnpj\": \"12345678901\"\r\n },\r\n {\r\n \"nome\": \"{{$randomCompanyName}}\",\r\n \"telefone\": \"{{$randomPhoneNumber}}\",\r\n \"cpf_cnpj\": \"12345678000199\"\r\n }\r\n ],\r\n \"ato_documentos\": [\r\n {\r\n \"url\": \"https://exemplo.com/documentos/ato_2025_0001.pdf\",\r\n \"nome_documento\": \"ATO_2025_0001.pdf\",\r\n \"tipo_documento\": \"ATO_LAVRADO\"\r\n },\r\n {\r\n \"url\": \"https://exemplo.com/documentos/certidao_2025_0001.pdf\",\r\n \"nome_documento\": \"CERTIDAO_2025_0001.pdf\",\r\n \"tipo_documento\": \"CERTIDAO\"\r\n }\r\n ]\r\n\r\n }\r\n\r\n ], \r\n \"ato_partes\": [\r\n {\r\n \"nome\": \"{{$randomCompanyName}}\",\r\n \"telefone\": \"{{$randomPhoneNumber}}\",\r\n \"cpf_cnpj\": \"12345678901\"\r\n },\r\n {\r\n \"nome\": \"{{$randomFullName}}\",\r\n \"telefone\": \"{{$randomPhoneNumber}}\",\r\n \"cpf_cnpj\": \"12345678000199\"\r\n }\r\n ],\r\n \"ato_documentos\": [\r\n {\r\n \"url\": \"https://exemplo.com/documentos/ato_2025_0001.pdf\",\r\n \"nome_documento\": \"ATO_2025_0001.pdf\",\r\n \"tipo_documento\": \"ATO_LAVRADO\"\r\n },\r\n {\r\n \"url\": \"https://exemplo.com/documentos/certidao_2025_0001.pdf\",\r\n \"nome_documento\": \"CERTIDAO_2025_0001.pdf\",\r\n \"tipo_documento\": \"CERTIDAO\"\r\n }\r\n ] \r\n },\r\n {\r\n \"identificacao_pedido_cgj\": {{randomNumber}},\r\n \"tipo_ato\": {{randomNumber}},\r\n \"codigo_selo\": \"{{$randomColor}}{{$randomAlphaNumeric}}{{$randomAlphaNumeric}}\",\r\n \"codigo_ato\": \"{{$randomColor}}{{$randomAlphaNumeric}}{{randomNumber}}\",\r\n \"nome_civil_ato\": \"{{$randomFullName}}\",\r\n \"nome_serventuario_praticou_ato\": \"{{$randomFullName}}\",\r\n \"data_solicitacao\": \"2025-10-21 15:30:00\",\r\n \"ip_maquina\": \"{{$randomIP}}\",\r\n \"inteiro_teor\": \"Texto do inteiro teor\",\r\n \"valor_entrada\": {{$randomPrice}},\r\n \"emolumento\": {{$randomPrice}},\r\n \"taxa_judiciaria\": {{$randomPrice}},\r\n \"fundos_estaduais\": {{$randomPrice}},\r\n \"protocolo_protesto\": \"PROT-2025-{{randomNumber}}\",\r\n \"protocolo_imovel\": \"IMOV-2025-{{randomNumber}}\",\r\n \"atos_vinculados\": [\r\n {\r\n \"identificacao_pedido_cgj\": {{randomNumber}},\r\n \"tipo_ato\": {{randomNumber}},\r\n \"codigo_selo\": \"{{$randomColor}}{{$randomAlphaNumeric}}{{$randomAlphaNumeric}}\",\r\n \"codigo_ato\": \"{{$randomColor}}{{$randomAlphaNumeric}}{{randomNumber}}\",\r\n \"nome_civil_ato\": \"{{$randomFullName}}\",\r\n \"nome_serventuario_praticou_ato\": \"{{$randomFullName}}\",\r\n \"data_solicitacao\": \"2025-10-21 15:30:00\",\r\n \"ip_maquina\": \"{{$randomIP}}\",\r\n \"inteiro_teor\": \"Texto do inteiro teor\",\r\n \"valor_entrada\": {{$randomPrice}},\r\n \"emolumento\": {{$randomPrice}},\r\n \"taxa_judiciaria\": {{$randomPrice}},\r\n \"fundos_estaduais\": {{$randomPrice}},\r\n \"protocolo_protesto\": \"PROT-2025-{{randomNumber}}\",\r\n \"protocolo_imovel\": \"IMOV-2025-{{randomNumber}}\",\r\n \"ato_partes\": [\r\n {\r\n \"nome\": \"{{$randomFullName}}\",\r\n \"telefone\": \"{{$randomPhoneNumber}}\",\r\n \"cpf_cnpj\": \"12345678901\"\r\n },\r\n {\r\n \"nome\": \"{{$randomFullName}}\",\r\n \"telefone\": \"{{$randomPhoneNumber}}\",\r\n \"cpf_cnpj\": \"12345678000199\"\r\n }\r\n ],\r\n \"ato_documentos\": [\r\n {\r\n \"url\": \"https://exemplo.com/documentos/ato_2025_0001.pdf\",\r\n \"nome_documento\": \"ATO_2025_0001.pdf\",\r\n \"tipo_documento\": \"ATO_LAVRADO\"\r\n },\r\n {\r\n \"url\": \"https://exemplo.com/documentos/certidao_2025_0001.pdf\",\r\n \"nome_documento\": \"CERTIDAO_2025_0001.pdf\",\r\n \"tipo_documento\": \"CERTIDAO\"\r\n }\r\n ]\r\n\r\n }\r\n\r\n ], \r\n \"ato_partes\": [\r\n {\r\n \"nome\": \"{{$randomFullName}}\",\r\n \"telefone\": \"{{$randomPhoneNumber}}\",\r\n \"cpf_cnpj\": \"12345678901\"\r\n },\r\n {\r\n \"nome\": \"{{$randomCompanyName}}\",\r\n \"telefone\": \"{{$randomPhoneNumber}}\",\r\n \"cpf_cnpj\": \"12345678000199\"\r\n }\r\n ],\r\n \"ato_documentos\": [\r\n {\r\n \"url\": \"https://exemplo.com/documentos/ato_2025_0001.pdf\",\r\n \"nome_documento\": \"ATO_2025_0001.pdf\",\r\n \"tipo_documento\": \"ATO_LAVRADO\"\r\n },\r\n {\r\n \"url\": \"https://exemplo.com/documentos/certidao_2025_0001.pdf\",\r\n \"nome_documento\": \"CERTIDAO_2025_0001.pdf\",\r\n \"tipo_documento\": \"CERTIDAO\"\r\n }\r\n ] \r\n },\r\n {\r\n \"identificacao_pedido_cgj\": {{randomNumber}},\r\n \"tipo_ato\": {{randomNumber}},\r\n \"codigo_selo\": \"{{$randomColor}}{{$randomAlphaNumeric}}{{$randomAlphaNumeric}}\",\r\n \"codigo_ato\": \"{{$randomColor}}{{$randomAlphaNumeric}}{{randomNumber}}\",\r\n \"nome_civil_ato\": \"{{$randomFullName}}\",\r\n \"nome_serventuario_praticou_ato\": \"{{$randomFullName}}\",\r\n \"data_solicitacao\": \"2025-10-21 15:30:00\",\r\n \"ip_maquina\": \"{{$randomIP}}\",\r\n \"inteiro_teor\": \"Texto do inteiro teor\",\r\n \"valor_entrada\": {{$randomPrice}},\r\n \"emolumento\": {{$randomPrice}},\r\n \"taxa_judiciaria\": {{$randomPrice}},\r\n \"fundos_estaduais\": {{$randomPrice}},\r\n \"protocolo_protesto\": \"PROT-2025-{{randomNumber}}\",\r\n \"protocolo_imovel\": \"IMOV-2025-{{randomNumber}}\",\r\n \"atos_vinculados\": [\r\n {\r\n \"identificacao_pedido_cgj\": {{randomNumber}},\r\n \"tipo_ato\": {{randomNumber}},\r\n \"codigo_selo\": \"{{$randomColor}}{{$randomAlphaNumeric}}{{$randomAlphaNumeric}}\",\r\n \"codigo_ato\": \"{{$randomColor}}{{$randomAlphaNumeric}}{{randomNumber}}\",\r\n \"nome_civil_ato\": \"{{$randomFullName}}\",\r\n \"nome_serventuario_praticou_ato\": \"{{$randomFullName}}\",\r\n \"data_solicitacao\": \"2025-10-21 15:30:00\",\r\n \"ip_maquina\": \"{{$randomIP}}\",\r\n \"inteiro_teor\": \"Texto do inteiro teor\",\r\n \"valor_entrada\": {{$randomPrice}},\r\n \"emolumento\": {{$randomPrice}},\r\n \"taxa_judiciaria\": {{$randomPrice}},\r\n \"fundos_estaduais\": {{$randomPrice}},\r\n \"protocolo_protesto\": \"PROT-2025-{{randomNumber}}\",\r\n \"protocolo_imovel\": \"IMOV-2025-{{randomNumber}}\",\r\n \"ato_partes\": [\r\n {\r\n \"nome\": \"{{$randomFullName}}\",\r\n \"telefone\": \"{{$randomPhoneNumber}}\",\r\n \"cpf_cnpj\": \"12345678901\"\r\n },\r\n {\r\n \"nome\": \"{{$randomFullName}}\",\r\n \"telefone\": \"{{$randomPhoneNumber}}\",\r\n \"cpf_cnpj\": \"12345678000199\"\r\n }\r\n ],\r\n \"ato_documentos\": [\r\n {\r\n \"url\": \"https://exemplo.com/documentos/ato_2025_0001.pdf\",\r\n \"nome_documento\": \"ATO_2025_0001.pdf\",\r\n \"tipo_documento\": \"ATO_LAVRADO\"\r\n },\r\n {\r\n \"url\": \"https://exemplo.com/documentos/certidao_2025_0001.pdf\",\r\n \"nome_documento\": \"CERTIDAO_2025_0001.pdf\",\r\n \"tipo_documento\": \"CERTIDAO\"\r\n }\r\n ]\r\n\r\n }\r\n\r\n ], \r\n \"ato_partes\": [\r\n {\r\n \"nome\": \"{{$randomFullName}}\",\r\n \"telefone\": \"{{$randomPhoneNumber}}\",\r\n \"cpf_cnpj\": \"12345678901\"\r\n },\r\n {\r\n \"nome\": \"{{$randomFullName}}\",\r\n \"telefone\": \"{{$randomPhoneNumber}}\",\r\n \"cpf_cnpj\": \"12345678000199\"\r\n }\r\n ],\r\n \"ato_documentos\": [\r\n {\r\n \"url\": \"https://exemplo.com/documentos/ato_2025_0001.pdf\",\r\n \"nome_documento\": \"ATO_2025_0001.pdf\",\r\n \"tipo_documento\": \"ATO_LAVRADO\"\r\n },\r\n {\r\n \"url\": \"https://exemplo.com/documentos/certidao_2025_0001.pdf\",\r\n \"nome_documento\": \"CERTIDAO_2025_0001.pdf\",\r\n \"tipo_documento\": \"CERTIDAO\"\r\n }\r\n ] \r\n },\r\n {\r\n \"identificacao_pedido_cgj\": {{randomNumber}},\r\n \"tipo_ato\": {{randomNumber}},\r\n \"codigo_selo\": \"{{$randomColor}}{{$randomAlphaNumeric}}{{$randomAlphaNumeric}}\",\r\n \"codigo_ato\": \"{{$randomColor}}{{$randomAlphaNumeric}}{{randomNumber}}\",\r\n \"nome_civil_ato\": \"{{$randomFullName}}\",\r\n \"nome_serventuario_praticou_ato\": \"{{$randomFullName}}\",\r\n \"data_solicitacao\": \"2025-10-21 15:30:00\",\r\n \"ip_maquina\": \"{{$randomIP}}\",\r\n \"inteiro_teor\": \"Texto do inteiro teor\",\r\n \"valor_entrada\": {{$randomPrice}},\r\n \"emolumento\": {{$randomPrice}},\r\n \"taxa_judiciaria\": {{$randomPrice}},\r\n \"fundos_estaduais\": {{$randomPrice}},\r\n \"protocolo_protesto\": \"PROT-2025-{{randomNumber}}\",\r\n \"protocolo_imovel\": \"IMOV-2025-{{randomNumber}}\",\r\n \"atos_vinculados\": [\r\n {\r\n \"identificacao_pedido_cgj\": {{randomNumber}},\r\n \"tipo_ato\": {{randomNumber}},\r\n \"codigo_selo\": \"{{$randomColor}}{{$randomAlphaNumeric}}{{$randomAlphaNumeric}}\",\r\n \"codigo_ato\": \"{{$randomColor}}{{$randomAlphaNumeric}}{{randomNumber}}\",\r\n \"nome_civil_ato\": \"{{$randomFullName}}\",\r\n \"nome_serventuario_praticou_ato\": \"{{$randomFullName}}\",\r\n \"data_solicitacao\": \"2025-10-21 15:30:00\",\r\n \"ip_maquina\": \"238.206.165.76\",\r\n \"inteiro_teor\": \"Texto do inteiro teor\",\r\n \"valor_entrada\": {{$randomPrice}},\r\n \"emolumento\": {{$randomPrice}},\r\n \"taxa_judiciaria\": {{$randomPrice}},\r\n \"fundos_estaduais\": {{$randomPrice}},\r\n \"protocolo_protesto\": \"PROT-2025-{{randomNumber}}\",\r\n \"protocolo_imovel\": \"IMOV-2025-{{randomNumber}}\",\r\n \"ato_partes\": [\r\n {\r\n \"nome\": \"{{$randomFullName}}\",\r\n \"telefone\": \"{{$randomPhoneNumber}}\",\r\n \"cpf_cnpj\": \"12345678901\"\r\n },\r\n {\r\n \"nome\": \"{{$randomFullName}}\",\r\n \"telefone\": \"{{$randomPhoneNumber}}\",\r\n \"cpf_cnpj\": \"12345678000199\"\r\n }\r\n ],\r\n \"ato_documentos\": [\r\n {\r\n \"url\": \"https://exemplo.com/documentos/ato_2025_0001.pdf\",\r\n \"nome_documento\": \"ATO_2025_0001.pdf\",\r\n \"tipo_documento\": \"ATO_LAVRADO\"\r\n },\r\n {\r\n \"url\": \"https://exemplo.com/documentos/certidao_2025_0001.pdf\",\r\n \"nome_documento\": \"CERTIDAO_2025_0001.pdf\",\r\n \"tipo_documento\": \"CERTIDAO\"\r\n }\r\n ]\r\n\r\n }\r\n\r\n ], \r\n \"ato_partes\": [\r\n {\r\n \"nome\": \"{{$randomFullName}}\",\r\n \"telefone\": \"{{$randomPhoneNumber}}\",\r\n \"cpf_cnpj\": \"12345678901\"\r\n },\r\n {\r\n \"nome\": \"{{$randomFullName}}\",\r\n \"telefone\": \"{{$randomPhoneNumber}}\",\r\n \"cpf_cnpj\": \"12345678000199\"\r\n }\r\n ],\r\n \"ato_documentos\": [\r\n {\r\n \"url\": \"https://exemplo.com/documentos/ato_2025_0001.pdf\",\r\n \"nome_documento\": \"ATO_2025_0001.pdf\",\r\n \"tipo_documento\": \"ATO_LAVRADO\"\r\n },\r\n {\r\n \"url\": \"https://exemplo.com/documentos/certidao_2025_0001.pdf\",\r\n \"nome_documento\": \"CERTIDAO_2025_0001.pdf\",\r\n \"tipo_documento\": \"CERTIDAO\"\r\n }\r\n ] \r\n },\r\n {\r\n \"identificacao_pedido_cgj\": {{randomNumber}},\r\n \"tipo_ato\": {{randomNumber}},\r\n \"codigo_selo\": \"{{$randomColor}}{{$randomAlphaNumeric}}{{$randomAlphaNumeric}}\",\r\n \"codigo_ato\": \"{{$randomColor}}{{$randomAlphaNumeric}}{{randomNumber}}\",\r\n \"nome_civil_ato\": \"{{$randomFullName}}\",\r\n \"nome_serventuario_praticou_ato\": \"{{$randomFullName}}\",\r\n \"data_solicitacao\": \"2025-10-21 15:30:00\",\r\n \"ip_maquina\": \"{{$randomIP}}\",\r\n \"inteiro_teor\": \"Texto do inteiro teor\",\r\n \"valor_entrada\": {{$randomPrice}},\r\n \"emolumento\": {{$randomPrice}},\r\n \"taxa_judiciaria\": {{$randomPrice}},\r\n \"fundos_estaduais\": {{$randomPrice}},\r\n \"protocolo_protesto\": \"PROT-2025-{{randomNumber}}\",\r\n \"protocolo_imovel\": \"IMOV-2025-{{randomNumber}}\",\r\n \"atos_vinculados\": [\r\n {\r\n \"identificacao_pedido_cgj\": {{randomNumber}},\r\n \"tipo_ato\": {{randomNumber}},\r\n \"codigo_selo\": \"{{$randomColor}}{{$randomAlphaNumeric}}{{$randomAlphaNumeric}}\",\r\n \"codigo_ato\": \"{{$randomColor}}{{$randomAlphaNumeric}}{{randomNumber}}\",\r\n \"nome_civil_ato\": \"{{$randomFullName}}\",\r\n \"nome_serventuario_praticou_ato\": \"{{$randomFullName}}\",\r\n \"data_solicitacao\": \"2025-10-21 15:30:00\",\r\n \"ip_maquina\": \"{{$randomIP}}\",\r\n \"inteiro_teor\": \"Texto do inteiro teor\",\r\n \"valor_entrada\": {{$randomPrice}},\r\n \"emolumento\": {{$randomPrice}},\r\n \"taxa_judiciaria\": {{$randomPrice}},\r\n \"fundos_estaduais\": {{$randomPrice}},\r\n \"protocolo_protesto\": \"PROT-2025-{{randomNumber}}\",\r\n \"protocolo_imovel\": \"IMOV-2025-{{randomNumber}}\",\r\n \"ato_partes\": [\r\n {\r\n \"nome\": \"Carlos Pereira\",\r\n \"telefone\": \"{{$randomPhoneNumber}}\",\r\n \"cpf_cnpj\": \"12345678901\"\r\n },\r\n {\r\n \"nome\": \"{{$randomFullName}}\",\r\n \"telefone\": \"{{$randomPhoneNumber}}\",\r\n \"cpf_cnpj\": \"12345678000199\"\r\n }\r\n ],\r\n \"ato_documentos\": [\r\n {\r\n \"url\": \"https://exemplo.com/documentos/ato_2025_0001.pdf\",\r\n \"nome_documento\": \"ATO_2025_0001.pdf\",\r\n \"tipo_documento\": \"ATO_LAVRADO\"\r\n },\r\n {\r\n \"url\": \"https://exemplo.com/documentos/certidao_2025_0001.pdf\",\r\n \"nome_documento\": \"CERTIDAO_2025_0001.pdf\",\r\n \"tipo_documento\": \"CERTIDAO\"\r\n }\r\n ]\r\n\r\n }\r\n\r\n ], \r\n \"ato_partes\": [\r\n {\r\n \"nome\": \"{{$randomFullName}}\",\r\n \"telefone\": \"{{$randomPhoneNumber}}\",\r\n \"cpf_cnpj\": \"12345678901\"\r\n },\r\n {\r\n \"nome\": \"{{$randomFullName}}\",\r\n \"telefone\": \"{{$randomPhoneNumber}}\",\r\n \"cpf_cnpj\": \"12345678000199\"\r\n }\r\n ],\r\n \"ato_documentos\": [\r\n {\r\n \"url\": \"https://exemplo.com/documentos/ato_2025_0001.pdf\",\r\n \"nome_documento\": \"ATO_2025_0001.pdf\",\r\n \"tipo_documento\": \"ATO_LAVRADO\"\r\n },\r\n {\r\n \"url\": \"https://exemplo.com/documentos/certidao_2025_0001.pdf\",\r\n \"nome_documento\": \"CERTIDAO_2025_0001.pdf\",\r\n \"tipo_documento\": \"CERTIDAO\"\r\n }\r\n ] \r\n } \r\n]\r\n",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/ato/batch",
"host": [
"{{url}}"
],
"path": [
"ato",
"batch"
]
}
},
"response": []
},
{
"name": "Atualizar",
"event": [
{
"listen": "test",
"script": {
"exec": [
""
],
"type": "text/javascript",
"packages": {},
"requests": {}
}
}
],
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{BearerToken}}",
"type": "string"
}
]
},
"method": "PUT",
"header": [],
"body": {
"mode": "raw",
"raw": "{\r\n \"origem_ato_principal_id\": 1,\r\n \"identificacao_pedido_cgj\": {{randomNumber}},\r\n \"tipo_ato\": {{randomNumber}},\r\n \"codigo_selo\": \"{{$randomAlphaNumeric}}{{$randomAlphaNumeric}}\",\r\n \"codigo_ato\": \"{{$randomAlphaNumeric}}{{randomNumber}}\",\r\n \"nome_civil_ato\": \"{{$randomFullName}}\",\r\n \"nome_serventuario_praticou_ato\": \"{{$randomFullName}}\",\r\n \"data_solicitacao\": \"2025-10-21 15:30:00\",\r\n \"ip_maquina\": \"238.206.165.76\",\r\n \"inteiro_teor\": \"Texto do inteiro teor\",\r\n \"valor_entrada\": {{$randomPrice}},\r\n \"emolumento\": {{$randomPrice}},\r\n \"taxa_judiciaria\": {{$randomPrice}},\r\n \"fundos_estaduais\": {{$randomPrice}},\r\n \"protocolo_protesto\": \"PROT-2025-{{randomNumber}}\",\r\n \"protocolo_imovel\": \"IMOV-2025-{{randomNumber}}\"\r\n}\r\n",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/ato/3",
"host": [
"{{url}}"
],
"path": [
"ato",
"3"
]
}
},
"response": []
},
{
"name": "Localizar ID",
"event": [
{
"listen": "test",
"script": {
"exec": [
""
],
"type": "text/javascript",
"packages": {},
"requests": {}
}
}
],
"protocolProfileBehavior": {
"disableBodyPruning": true
},
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{BearerToken}}",
"type": "string"
}
]
},
"method": "GET",
"header": [],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/ato/58",
"host": [
"{{url}}"
],
"path": [
"ato",
"58"
]
}
},
"response": []
},
{
"name": "Localizar Código Ato",
"event": [
{
"listen": "test",
"script": {
"exec": [
""
],
"type": "text/javascript",
"packages": {},
"requests": {}
}
}
],
"protocolProfileBehavior": {
"disableBodyPruning": true
},
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{BearerToken}}",
"type": "string"
}
]
},
"method": "GET",
"header": [],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/atos/yellowu88",
"host": [
"{{url}}"
],
"path": [
"atos",
"yellowu88"
]
}
},
"response": []
},
{
"name": "Deletar",
"event": [
{
"listen": "test",
"script": {
"exec": [
""
],
"type": "text/javascript",
"packages": {},
"requests": {}
}
}
],
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{BearerToken}}",
"type": "string"
}
]
},
"method": "DELETE",
"header": [],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/ato/5",
"host": [
"{{url}}"
],
"path": [
"ato",
"5"
]
}
},
"response": []
}
]
}
],
"event": [
{
"listen": "prerequest",
"script": {
"type": "text/javascript",
"packages": {},
"requests": {},
"exec": [
""
]
}
},
{
"listen": "test",
"script": {
"type": "text/javascript",
"packages": {},
"requests": {},
"exec": [
""
]
}
}
],
"variable": [
{
"key": "url",
"value": ""
},
{
"key": "BearerToken",
"value": ""
}
]
}