Related to postman collection generating from yml file #329
Unanswered
shubhambajad
asked this question in
Q&A
Replies: 1 comment 3 replies
-
@thim81 do you know anything about it ? |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi Team,
I have schema.yml file which consist of all the schema related to APIs.
For post api it was giving the schema body in three format for which I have mentioned below.
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/Group'
application/x-www-form-urlencoded:
schema:
$ref: '#/components/schemas/Group'
multipart/form-data:
schema:
$ref: '#/components/schemas/Group'
required: true
When I am converting this yml file to postman collection using a portman tool it is only considering a application/x-www-form-urlencoded format not the other format and i want to convert the payload in application/json format so is there any way to do this?
Beta Was this translation helpful? Give feedback.
All reactions