Download OpenAPI specification:
The Verbandspartner API allows you to access events from the platform. You can use this API to search for events, filter events by various criteria, and get detailed information about individual events.
| period | string or null Enum: "past" "upcoming" "next_month" "all" Filter events by period: |
| search | string or null Search for events by name, description, or tags |
| tags | Array of strings or null Comma separated list of tags to filter events by |
| scope | string or null Enum: "public" "private" Filter events by scope: |
| status | string or null Enum: "draft" "published" "canceled" "completed" "all" Filter events by status: |
| sortKey | string or null Enum: "startAt" "name" "category" |
| sortOrder | string or null Enum: "asc" "desc" |
| page | integer or null <int32> |
| size | integer or null <int32> |
{- "data": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "name": "string",
- "description": "string",
- "url": "string",
- "logoUrl": "string",
- "scope": "public",
- "onlineMeetingUrl": "string",
- "startAt": "2022-03-10T16:15:50Z",
- "endAt": "2022-03-10T16:15:50Z",
- "startAtDay": "2022-03-10",
- "endAtDay": "2022-03-10",
- "registrationDeadline": "2022-03-10T16:15:50Z",
- "location": {
- "id": 0,
- "name": "string",
- "streetAddress": "string",
- "locality": "string",
- "postalCode": "string",
- "lat": 0.1,
- "lng": 0.1,
- "plusCode": "string"
}, - "maxAttendees": 0,
- "currentAttendees": 0,
- "availableSeats": 0,
- "status": "draft",
- "tags": [
- "string"
]
}
], - "meta": {
- "page": 0,
- "size": 0,
- "totalItems": 0,
- "totalPages": 0,
- "next": "string",
- "previous": "string"
}
}