Update api_docs_mck.py
Browse files- api_docs_mck.py +5 -5
api_docs_mck.py
CHANGED
|
@@ -6,7 +6,7 @@ api_docs = {
|
|
| 6 |
"endpoints": {
|
| 7 |
"booking": {
|
| 8 |
"method": "GET",
|
| 9 |
-
"url": "/booking"
|
| 10 |
"description": "Retrieve booking information associated with a specific booking ID.",
|
| 11 |
"parameters": None,
|
| 12 |
"headers": {
|
|
@@ -28,7 +28,7 @@ api_docs = {
|
|
| 28 |
},
|
| 29 |
"firmahytteordning": {
|
| 30 |
"method": "GET",
|
| 31 |
-
"url": "/firmahytteordning"
|
| 32 |
"description": "Retrieve details about Daysoff's 'Firmahytteordning' service.",
|
| 33 |
"parameters": {
|
| 34 |
"search": {
|
|
@@ -48,9 +48,9 @@ api_docs = {
|
|
| 48 |
}
|
| 49 |
}
|
| 50 |
},
|
| 51 |
-
"
|
| 52 |
"method": "GET",
|
| 53 |
-
"url": "/personvernspolicy"
|
| 54 |
"description": "Retrieve personvernspolicy for DaysOff.",
|
| 55 |
"headers": {
|
| 56 |
"Content-Type": "application/json"
|
|
@@ -66,6 +66,6 @@ api_docs = {
|
|
| 66 |
}
|
| 67 |
}
|
| 68 |
}
|
|
|
|
| 69 |
# Convert to JSON string for usage in your Python application
|
| 70 |
api_docs_str = json.dumps(api_docs, indent=2)
|
| 71 |
-
api_docs_str
|
|
|
|
| 6 |
"endpoints": {
|
| 7 |
"booking": {
|
| 8 |
"method": "GET",
|
| 9 |
+
"url": "/booking",
|
| 10 |
"description": "Retrieve booking information associated with a specific booking ID.",
|
| 11 |
"parameters": None,
|
| 12 |
"headers": {
|
|
|
|
| 28 |
},
|
| 29 |
"firmahytteordning": {
|
| 30 |
"method": "GET",
|
| 31 |
+
"url": "/firmahytteordning",
|
| 32 |
"description": "Retrieve details about Daysoff's 'Firmahytteordning' service.",
|
| 33 |
"parameters": {
|
| 34 |
"search": {
|
|
|
|
| 48 |
}
|
| 49 |
}
|
| 50 |
},
|
| 51 |
+
"personvernspolicy": {
|
| 52 |
"method": "GET",
|
| 53 |
+
"url": "/personvernspolicy",
|
| 54 |
"description": "Retrieve personvernspolicy for DaysOff.",
|
| 55 |
"headers": {
|
| 56 |
"Content-Type": "application/json"
|
|
|
|
| 66 |
}
|
| 67 |
}
|
| 68 |
}
|
| 69 |
+
|
| 70 |
# Convert to JSON string for usage in your Python application
|
| 71 |
api_docs_str = json.dumps(api_docs, indent=2)
|
|
|