Skip to content

Commit 073e197

Browse files
committed
more comments
1 parent e612540 commit 073e197

File tree

5 files changed

+15
-15
lines changed

5 files changed

+15
-15
lines changed

src/api/events.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -144,13 +144,13 @@ Additionally, the API does not allow to set the status of an event - it will alw
144144
"recurrence_byMonthDay": "3,23", // example for the 3rd and 23rd day of the month
145145
"recurrence_count": 10, // example: repeat 10 times
146146
"recurrence_weekstart": "MO", // example for Monday
147-
"layout": "id-of-a-style-template", // take the id from the url in the application
148-
"landingpage": "id-of-a-landingpage-template", // take the id from the url in the application
147+
"layout": "id-of-a-style-template", // take the id from the url in the application or the response when creating one via API
148+
"landingpage": "id-of-a-landingpage-template", // take the id from the url in the application or the response when creating one via API
149149
"iCalFileName": "overriding the ics file name",
150150
"rsvp": true,
151-
"rsvp_block": "id-of-an-rsvp-block", // take the id from the url in the application or the response when creating an rsvp block via API
151+
"rsvp_block": "id-of-an-rsvp-block", // take the id from the url in the application or the response when creating one via API
152152
"cta": true,
153-
"cta_block": "id-of-a-cta-block", // take the id from the url in the application
153+
"cta_block": "id-of-a-cta-block", // take the id from the url in the application or the response when creating one via API
154154
"hideButton": false,
155155
"distribution": true
156156
}

src/api/groups.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,10 +77,10 @@ Mind that you cannot add events on group creation. **You can only link events to
7777
"internal_note": null, // an optional simple string
7878
"subscription": "no", // can be "no" or "external" - the latter one requires a subscription_cal_url
7979
"subscription_cal_url": null, // url to an external calendar. Needs to start with "http"! Usually ends with ".ics"
80-
"layout": "id-of-a-style-template", // take the id from the url in the application
81-
"landingpage": "id-of-a-landingpage-template", // take the id from the url in the application
80+
"layout": "id-of-a-style-template", // take the id from the url in the application or the response when creating one via API
81+
"landingpage": "id-of-a-landingpage-template", // take the id from the url in the application or the response when creating one via API
8282
"cta": true,
83-
"cta_block": "id-of-a-cta-block" // take the id from the url in the application
83+
"cta_block": "id-of-a-cta-block" // take the id from the url in the application or the response when creating one via API
8484
}
8585
```
8686

src/de/api/events.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -144,13 +144,13 @@ Weiterhin ist es nicht erlaubt, den Status eines Events über die API zu ändern
144144
"recurrence_byMonthDay": "3,23", // Beispiel für den 3ten und 23ten Tag des Monats
145145
"recurrence_count": 10, // Beispiel: 10x wiederholen
146146
"recurrence_weekstart": "MO", // Beispiel für Montag
147-
"layout": "id-eines-style-templates", // diese ID findest du in der URL des entsprechenden Elements in der Anwendung
148-
"landingpage": "id-eines-landingpage-templates", // diese ID findest du in der URL des entsprechenden Elements in der Anwendung
147+
"layout": "id-eines-style-templates", // diese ID findest du in der URL des entsprechenden Elements in der Anwendung oder in der Response bei Erstellung über die API
148+
"landingpage": "id-eines-landingpage-templates", // diese ID findest du in der URL des entsprechenden Elements in der Anwendung oder in der Response bei Erstellung über die API
149149
"iCalFileName": "überschreibt den ics-Dateinamen",
150150
"rsvp": true,
151-
"rsvp_block": "id-eines-rsvp-blocks", // diese ID findest du in der URL des entsprechenden Elements in der Anwendung oder in der Response bei Erstellung eines RSVP-Blocks über die API
151+
"rsvp_block": "id-eines-rsvp-blocks", // diese ID findest du in der URL des entsprechenden Elements in der Anwendung oder in der Response bei Erstellung über die API
152152
"cta": true,
153-
"cta_block": "id-eines-cta-blocks", // diese ID findest du in der URL des entsprechenden Elements in der Anwendung
153+
"cta_block": "id-eines-cta-blocks", // diese ID findest du in der URL des entsprechenden Elements in der Anwendung oder in der Response bei Erstellung über die API
154154
"hideButton": false,
155155
"distribution": true
156156
}

src/de/api/groups.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,10 +77,10 @@ Beachte, dass du bei der Erstellung einer Gruppe keine Events hinzufügen kannst
7777
"internal_note": null, // ein optionaler einfacher String
7878
"subscription": "no", // kann "no" oder "external" lauten - letzteres erfordert eine subscription_cal_url
7979
"subscription_cal_url": null, // url zu einem externen Kalender. Muss mit "http" beginnen! Endet gewöhnlich mit ".ics"
80-
"layout": "id-eines-style-templates", // diese ID findest du in der URL des entsprechenden Elements in der Anwendung
81-
"landingpage": "id-eines-landingpage-templates", // diese ID findest du in der URL des entsprechenden Elements in der Anwendung
80+
"layout": "id-eines-style-templates", // diese ID findest du in der URL des entsprechenden Elements in der Anwendung oder in der Response bei Erstellung über die API
81+
"landingpage": "id-eines-landingpage-templates", // diese ID findest du in der URL des entsprechenden Elements in der Anwendung oder in der Response bei Erstellung über die API
8282
"cta": true,
83-
"cta_block": "id-eines-cta-blocks" // diese ID findest du in der URL des entsprechenden Elements in der Anwendung
83+
"cta_block": "id-eines-cta-blocks" // diese ID findest du in der URL des entsprechenden Elements in der Anwendung oder in der Response bei Erstellung über die API
8484
}
8585
```
8686

src/de/api/rsvp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ Um einen neuen RSVP-Template-Block zu erstellen, musst du mindestens das Feld "n
116116
"default": false
117117
}
118118
],
119-
"email_rsvp_doi": 34, // die ID eines E-Mail-Templates ist aus der URL ersichtlic, wenn du das Template in der Web App aufrufst
119+
"email_rsvp_doi": 34, // die ID eines E-Mail-Templates ist aus der URL ersichtlich, wenn du das Template in der Web App aufrufst
120120
"email_rsvp_thank_you": 33,
121121
"email_rsvp_signup_confirmation": 763,
122122
"email_rsvp_change_confirmation": 434,

0 commit comments

Comments
 (0)