Skip to content

Instantly share code, notes, and snippets.

@TharmiganK
Created July 28, 2023 07:17
Show Gist options
  • Save TharmiganK/443709ca70a374a9517e62e049e4b954 to your computer and use it in GitHub Desktop.
Save TharmiganK/443709ca70a374a9517e62e049e4b954 to your computer and use it in GitHub Desktop.
Sample Requests to test the Conference Service
### Add a new conference
POST http://localhost:8102/conferences
Content-Type: application/json
{
"name": "WSO2Con"
}
### Retrive all conferences
GET http://localhost:8102/conferences
### Add another conference
POST http://localhost:8102/conferences
Content-Type: application/json
{
"name": "KubeCon"
}
### Retrive all conferences with country
GET http://localhost:8102/conferenceswithcountry
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment