GET api/MinuteMeditations/GetMinuteMeditationByDate?mmDate={mmDate}
Returns a single Minute Meditation based on the passed date.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
mmDate |
Date [retrieved from the URI] |
date |
Required |
Body Parameters
None.
Response Information
Resource Description
A single Minute Meditation
MinuteMeditationName | Description | Type | Additional information |
---|---|---|---|
meditation_id |
Interenal id |
integer |
None. |
meditation_title |
The title of our meditation |
string |
None. |
meditation |
The actual meditation |
string |
None. |
book |
The resource that this meditation came from or was inspired by. |
string |
None. |
meditation_date |
The date the meditation was published. |
date |
None. |
Response Formats
application/json, text/json
Sample:
{ "meditation_id": 1, "meditation_title": "sample string 2", "meditation": "sample string 3", "book": "sample string 4", "meditation_date": "2022-06-30T00:04:47.2402174-04:00" }
application/xml, text/xml
Sample:
<MinuteMeditation xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FMServices.Models"> <book>sample string 4</book> <meditation>sample string 3</meditation> <meditation_date>2022-06-30T00:04:47.2402174-04:00</meditation_date> <meditation_id>1</meditation_id> <meditation_title>sample string 2</meditation_title> </MinuteMeditation>