What product/components do you use and which version/fix level?
IS 10.5
What are trying to achieve? Please describe in detail.
I have a flow service named sumar
Input/Output
I have a Rest resource
And it descriptor
Swagger:
---
swagger: "2.0"
info:
description: "API de una calculadora"
version: "1.0"
title: "calculadora"
host: "127.0.0.1:5555"
basePath: "/rad/Pruebas.api:calculadoraDescriptor"
schemes:
- "http"
consumes:
- "application/json"
produces:
- "application/json"
paths:
/sumar:
get:
description: ""
operationId: "sumar_GET_1"
parameters:
- in: "body"
name: "request"
description: ""
required: true
schema:
$ref: "#/definitions/request"
responses:
200:
description: "OK"
schema:
$ref: "#/definitions/sumar_GET_response"
401:
description: "Access Denied"
definitions:
response:
required:
- "resultado"
properties:
resultado:
type: "string"
sumar_GET_response:
required:
- "response"
properties:
response:
$ref: "#/definitions/response"
request:
required:
- "num1"
- "num2"
properties:
num1:
type: "string"
num2:
type: "string"
When I execute in postman this response null
Ive tried with savePipeline and restorePipeline and can not see my variables request/num1 and request/num2
What’s wrong?
Regards,
Jesus