mirror of
https://github.com/ThisIsBenny/wishlist-app.git
synced 2025-04-19 15:27:41 +00:00
api key added to all example requests in examples.http
Signed-off-by: Benny Samir Hierl <bennysamir@posteo.de>
This commit is contained in:
parent
a45ab85e71
commit
a362b67ec6
1 changed files with 7 additions and 1 deletions
|
@ -1,11 +1,12 @@
|
||||||
@BASE_URL=http://localhost:5000/api
|
@BASE_URL=http://localhost:5000/api
|
||||||
|
@API_KEY=TOP_SECRET
|
||||||
|
|
||||||
|
|
||||||
###
|
###
|
||||||
# @name createWishlistFirst
|
# @name createWishlistFirst
|
||||||
POST {{BASE_URL}}/wishlist
|
POST {{BASE_URL}}/wishlist
|
||||||
Content-Type: application/json
|
Content-Type: application/json
|
||||||
Authorization: API-Key TOP_SECRET
|
Authorization: API-Key {{API_KEY}}
|
||||||
|
|
||||||
{
|
{
|
||||||
"title": "Junior",
|
"title": "Junior",
|
||||||
|
@ -17,6 +18,7 @@ Authorization: API-Key TOP_SECRET
|
||||||
# @name createWishlistSecond
|
# @name createWishlistSecond
|
||||||
POST {{BASE_URL}}/wishlist
|
POST {{BASE_URL}}/wishlist
|
||||||
Content-Type: application/json
|
Content-Type: application/json
|
||||||
|
Authorization: API-Key {{API_KEY}}
|
||||||
|
|
||||||
{
|
{
|
||||||
"title": "Wedding",
|
"title": "Wedding",
|
||||||
|
@ -37,6 +39,7 @@ GET {{BASE_URL}}/wishlist/{{getWishlists.response.body.0.slugUrlText}}
|
||||||
# @name updateFirstWishlist
|
# @name updateFirstWishlist
|
||||||
PUT {{BASE_URL}}/wishlist/{{getWishlists.response.body.0.id}}
|
PUT {{BASE_URL}}/wishlist/{{getWishlists.response.body.0.id}}
|
||||||
Content-Type: application/json
|
Content-Type: application/json
|
||||||
|
Authorization: API-Key {{API_KEY}}
|
||||||
|
|
||||||
{
|
{
|
||||||
"title": "Junior",
|
"title": "Junior",
|
||||||
|
@ -49,6 +52,7 @@ Content-Type: application/json
|
||||||
# @name addItemToFirstWishlist
|
# @name addItemToFirstWishlist
|
||||||
POST {{BASE_URL}}/wishlist/{{getWishlists.response.body.0.id}}/item
|
POST {{BASE_URL}}/wishlist/{{getWishlists.response.body.0.id}}/item
|
||||||
Content-Type: application/json
|
Content-Type: application/json
|
||||||
|
Authorization: API-Key {{API_KEY}}
|
||||||
|
|
||||||
{
|
{
|
||||||
"title": "Goldfish 40442 | BrickHeadz",
|
"title": "Goldfish 40442 | BrickHeadz",
|
||||||
|
@ -61,6 +65,7 @@ Content-Type: application/json
|
||||||
# @name updateItemOnFirstWishlist
|
# @name updateItemOnFirstWishlist
|
||||||
PUT {{BASE_URL}}/wishlist/{{getWishlists.response.body.0.id}}/item/1
|
PUT {{BASE_URL}}/wishlist/{{getWishlists.response.body.0.id}}/item/1
|
||||||
Content-Type: application/json
|
Content-Type: application/json
|
||||||
|
Authorization: API-Key {{API_KEY}}
|
||||||
|
|
||||||
{
|
{
|
||||||
"title": "Goldfish | BrickHeadz",
|
"title": "Goldfish | BrickHeadz",
|
||||||
|
@ -72,3 +77,4 @@ Content-Type: application/json
|
||||||
###
|
###
|
||||||
# @name deleteItemToFirstWishlist
|
# @name deleteItemToFirstWishlist
|
||||||
DELETE {{BASE_URL}}/wishlist/{{getWishlists.response.body.0.id}}/item/2
|
DELETE {{BASE_URL}}/wishlist/{{getWishlists.response.body.0.id}}/item/2
|
||||||
|
Authorization: API-Key {{API_KEY}}
|
||||||
|
|
Loading…
Add table
Reference in a new issue