You can use Postman or another API testing tool to try out your API request. Here's how to do it using Postman:
- Open the Postman desktop app or go to the Postman web portal.
- Log in to your Postman account.
- Create a new request.
- Set the request method to GET.
- Go to Operations details for the API you are testing to confirm the GET operation is supported.
- Go to Environments detial.
- Copy the Base URL.
In Postman:
- Go to the request field.
- Paste the Base URL.
- Go to Operations details.
- Copy the URL template value. For example, '/info'. This represents the operation you are about to test using the GET operation.
Then in Postman
- Paste that URL template value into the Request field. Append the URL template to the end of the Base URL in your request.
- Add a subscription key. If the API uses OAuth Application-flow, you’ll also need to get an API subscription token.
- Select the Send to submit the request.