Skip to content

Commit ad3f22e

Browse files
progression :-)
1 parent 493cc88 commit ad3f22e

37 files changed

+2073
-228
lines changed

.DS_Store

6 KB
Binary file not shown.

.idea/.gitignore

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/UranusDoc.iml

Lines changed: 12 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/.DS_Store

6 KB
Binary file not shown.

docs/api/.DS_Store

6 KB
Binary file not shown.

docs/api/admin/.DS_Store

6 KB
Binary file not shown.

docs/api/admin/create-event.md

Lines changed: 56 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -85,50 +85,71 @@ The following are examples of payload sent to the API:
8585
```
8686

8787

88-
#### Optional information
88+
#### Full example
8989

9090
```json
9191
{
92-
// Basic data here ...
93-
"space_id": 88, // To be used only if venue_id != null
94-
"external_id": 872,
95-
"subtitle": "Painting for Beginners",
96-
"teaser_text": "Bring your own brushes!",
97-
"participation_info": "Remember outdoor clothing",
98-
"meeting_point": "Tourist Information",
99-
"languages": ["de", "da", "en"],
100-
"min_age": 3,
101-
"max_age": 8,
102-
"max_attendees": 8,
92+
"title": "Autumn Music Festival",
93+
"description": "A vibrant celebration of music, food, and culture in the heart of the city.",
94+
"subtitle": "Experience the sounds of fall",
95+
"teaser_text": "Join us for a weekend of unforgettable performances!",
96+
"tags": ["music", "festival", "autumn", "outdoor"],
97+
"source_url": "https://example.com/events/autumn-music-festival",
98+
"online_event_url": null,
99+
"organizer_id": 42,
100+
"venue_id": null,
101+
"space_id": null,
102+
"external_id": "9876",
103+
"participation_info": "Bring your own blanket and snacks.",
104+
"occation_type_id": 2,
105+
"languages": ["en", "de"],
106+
"min_age": 12,
107+
"max_age": 99,
108+
"meeting_point": "Main entrance, City Park",
109+
"max_attendees": 500,
103110
"price_type_id": 1,
111+
"currency_code": "EUR",
104112
"ticket_advance": true,
105113
"ticket_required": true,
106-
"registration_required": false,
107-
"currency_code": "EUR",
108-
"online_event_url": "https://zoom.grain.ione/s873a",
109-
"occation_type_id": 3,
110-
"source_url": "https://domain.com/event123",
111-
"tags": ["music", "synthesizer", "experimental"],
112-
"types": [
113-
{"type_id": 1, "genre_id": 66},
114-
{"type_id": 1, "genre_id": 1}
115-
],
114+
"registration_required": true,
115+
"custom": "Special VIP access for sponsors",
116+
"style": "outdoor festival",
117+
"release_status_id": 1,
118+
"release_date": "2025-09-01",
119+
"location": {
120+
"name": "City Park",
121+
"description": "A large public park in downtown",
122+
"street": "Park Avenue",
123+
"house_number": "123",
124+
"postal_code": "10115",
125+
"city": "Berlin",
126+
"country_code": "DE",
127+
"state_code": "BE",
128+
"latitude": 52.520008,
129+
"longitude": 13.404954
130+
},
116131
"dates": [
117132
{
118-
"start_date": "2025-12-05", // Required!
119-
"start_time": "10:00", // Required!
120-
"end_date": "2025-12-06",
121-
"end_time": "15:00",
122-
"entry_time": "09:30",
123-
"all_day": true
124-
},
125-
// Add more dates if needed
133+
"start_date": "2025-10-10",
134+
"start_time": "12:00",
135+
"end_date": "2025-10-12",
136+
"end_time": "22:00",
137+
"entry_time": "11:30",
138+
"venue_id": null,
139+
"space_id": null,
140+
"all_day": false
141+
}
126142
],
127-
"release_date": "2025-11-20",
128-
"release_status_id": 2,
129-
130-
"custom": "...", // Used for custom text information
131-
"style": "...", // Used for custom style codes
143+
"types": [
144+
{
145+
"type_id": 1,
146+
"genre_id": 5
147+
},
148+
{
149+
"type_id": 2,
150+
"genre_id": null
151+
}
152+
]
132153
}
133154
```
134155

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Get Organization Member Permissions
2+
3+
<span class="func-signature">GET /api/admin/organization/:organizationId/member/:memberId/permissions</span>
4+
5+
Returns organization-level permissions for a member of an organization team.
6+
7+
8+
!!! note "Authentication / Permissions"
9+
- The user must be authenticated.
10+
11+
12+
```json title="JSON Response Example"
13+
{
14+
"permissions": 520556415,
15+
"user_display_name": "Roald",
16+
"user_id": 36
17+
}
18+
```

0 commit comments

Comments
 (0)