camparchimedes commited on
Commit
b4624aa
ยท
verified ยท
1 Parent(s): f3ec65b

Update api_docs_mck.py

Browse files
Files changed (1) hide show
  1. api_docs_mck.py +13 -2
api_docs_mck.py CHANGED
@@ -9,8 +9,19 @@ api_docs = {
9
  "description": "Retrieve booking information associated with a specific booking ID.",
10
  "parameters": None,
11
  "response": {
12
- "description": "A JSON object containing booking information associated with a specific booking ID.",
13
- "content_type": "application/json"
 
 
 
 
 
 
 
 
 
 
 
14
  }
15
  },
16
  "/firmahytteordning": {
 
9
  "description": "Retrieve booking information associated with a specific booking ID.",
10
  "parameters": None,
11
  "response": {
12
+ "description": "A JSON object listing information associated with a booking ID (bestillingskode).",
13
+ "content_type": "application/json",
14
+ "fields": {
15
+ "Bestillingskode": "response.get('Bestillingskode', 'N/A')",
16
+ "Navn": "response.get('Navn', 'N/A')",
17
+ "Belรธp": "response.get('Belรธp', 'N/A')",
18
+ "Checkin": "response.get('Checkin', 'N/A')",
19
+ "Checkout": "response.get('Checkout', 'N/A')",
20
+ "Addresse": "response.get('Addresse', 'N/A')",
21
+ "Bruker ID": "response.get('Bruker ID', 'N/A')",
22
+ "Viktig informasjon": "response.get('Viktig informasjon', 'N/A')",
23
+ "Message": "response.get('Message', 'N/A')",
24
+ },
25
  }
26
  },
27
  "/firmahytteordning": {