A collection which can be imported into Postman for testing the API is provided here. before portal release 3.29 View file |
---|
name | jrest.postman_collection.json |
---|
height | 250 |
---|
|
from portal release 3.29 View file |
---|
name | jREST API.postman_collection.json |
---|
height | 250 |
---|
|
Importing Swagger to PostmanTo import the Swagger to Postman, you can access the .json definition using the swagger UI. Copy the definition, and save to a file. Change the following at the top: Code Block |
---|
"swagger" : "2.0",
"info" : {
"version" : "1.0"
}, |
Change to: Code Block |
---|
"openapi" : "3.0.1",
"info" : {
"title" : "rest api docs",
"version" : "v1"
},
|
Now you shold be able to import to postman. |