> For the complete documentation index, see [llms.txt](https://eleven-fifty-academy.gitbook.io/dotnet-201-elevennote/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://eleven-fifty-academy.gitbook.io/dotnet-201-elevennote/elevennote-api-parts-13-19/part-15-api-controller/15.1-postmangetnotes.md).

# 15.1: Test Getting Notes in Postman

1. Run the API project.
2. Open Postman.
3. Click on the + to create new request.
4. Set it to GET.
5. Make sure the URL is the same as the URL running the API.
6. At  the end of the URL add **/api/note.** (or whatever your api endpoint is)
7. Click on the **Headers** tab.
8. Add a key called **Authorization.**
9. Add a value starting with **Bearer.**
10. Go to the first request tab and copy the token from that previous request without the quotation marks.
11. Type a space after **Bearer** and then paste the token.\
    &#x20;(PLEASE Note that the image below has an error. It should say GET and not POST.) Also notice that the word Bearer is there before the token.&#x20;

    ![Notes Request](https://3258533034-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-LAU8YfMZK4G04fkoGGv%2F-LAxpyeezdS3jPxJnKOs%2F-LAxq-SEidRRCgk8qCWI%2F15.1-A.png?generation=1524677233734087\&alt=media)
12. Press **Send.**
13. You should see a list of notes(or whatever) for your particular account (make sure the account you are using has some notes)

    ![Notes](https://3258533034-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-LAU8YfMZK4G04fkoGGv%2F-LAxpyeezdS3jPxJnKOs%2F-LAxq-ToL_B2FMZYji7B%2F15.1-B.png?generation=1524677234512046\&alt=media)
14. Stop the app

[Next,](/dotnet-201-elevennote/elevennote-api-parts-13-19/part-16-http-methods/16.0-httpmethods.md) we'll add the Http methods in the `NoteController`.
