Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
spring-reactive-demo
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Venkata Rajesh Kumar Gajjala
spring-reactive-demo
Commits
d93bc18b
Commit
d93bc18b
authored
Feb 21, 2020
by
Venkata Rajesh Kumar Gajjala
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[SRD] Added postman collection
Added postman collection for quick reference of how to invoke the APIs
parent
9c91233d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
95 additions
and
0 deletions
+95
-0
Spring Webflux.postman_collection.json
...ncollectionforapis/Spring Webflux.postman_collection.json
+95
-0
No files found.
postmancollectionforapis/Spring Webflux.postman_collection.json
0 → 100644
View file @
d93bc18b
{
"variables"
:
[],
"info"
:
{
"name"
:
"Spring Webflux"
,
"_postman_id"
:
"d9593401-54b0-bf5c-e87e-e088f27ec4b9"
,
"description"
:
""
,
"schema"
:
"https://schema.getpostman.com/json/collection/v2.0.0/collection.json"
},
"item"
:
[
{
"name"
:
"GetAllTweets"
,
"request"
:
{
"url"
:
"http://localhost:8080/myTweets"
,
"method"
:
"GET"
,
"header"
:
[],
"body"
:
{},
"description"
:
""
},
"response"
:
[]
},
{
"name"
:
"Create Tweet"
,
"request"
:
{
"url"
:
"http://localhost:8080/createTweet"
,
"method"
:
"POST"
,
"header"
:
[
{
"key"
:
"Content-Type"
,
"value"
:
"application/json"
,
"description"
:
""
}
],
"body"
:
{
"mode"
:
"raw"
,
"raw"
:
"{
\n\t\"
id
\"
:
\"
3
\"
,
\n\t\"
text
\"
:
\"
Spring Reactive Example
\"\n
}"
},
"description"
:
""
},
"response"
:
[]
},
{
"name"
:
"GetTweetById"
,
"request"
:
{
"url"
:
"http://localhost:8080/myTweets/1"
,
"method"
:
"GET"
,
"header"
:
[],
"body"
:
{},
"description"
:
"API to get the Tweet details by Tweet Id"
},
"response"
:
[]
},
{
"name"
:
"UpdateTweetById"
,
"request"
:
{
"url"
:
"http://localhost:8080/myTweets/1"
,
"method"
:
"PUT"
,
"header"
:
[
{
"key"
:
"Content-Type"
,
"value"
:
"application/json"
,
"description"
:
""
}
],
"body"
:
{
"mode"
:
"raw"
,
"raw"
:
"{
\n\t\"
text
\"
:
\"
Updated the previous tweet
\"\n
}"
},
"description"
:
"Update the existing Tweet By TweetId"
},
"response"
:
[]
},
{
"name"
:
"DeleteTweetById"
,
"request"
:
{
"url"
:
"http://localhost:8080/myTweets/1"
,
"method"
:
"DELETE"
,
"header"
:
[],
"body"
:
{},
"description"
:
"Delete an existing Tweet by Tweet id"
},
"response"
:
[]
},
{
"name"
:
"TweetsAsServerSentEvents"
,
"request"
:
{
"url"
:
"http://localhost:8080/stream/tweets"
,
"method"
:
"GET"
,
"header"
:
[],
"body"
:
{},
"description"
:
"Tweets are Sent to the client as Server Sent Events"
},
"response"
:
[]
}
]
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment