An API which you can use to make note of gift ideas throughout the year - to make buying gifts much easier. Check it out on Mashape!
Basic CRUD functionality on all resources is supported. Authentication uses RapidAPI headers. Read more about this project on my blog!
The following is a synopsis; check out the full Swagger documentation.
POST /api/v1/holidays
{
"name": "Independence Day",
"month": 7,
"day": 4
}
POST /api/v1/recipients
{
"name": "Alice"
}
POST /api/v1/giftIdeas
{
"holidayId": 123,
"recipientId": 456,
"giftDescription": "books"
}
The giftIdeas
collection may be optionally queried by holiday or recipient:
GET /api/v1/giftIdeas?holidayId=123&recipientId=456
200 OK
{
"items": [
{
"holidayId": 123,
"recipientId": 456,
"giftDescription": "books"
}
]
}