diff --git a/modules/corporate-event/backend/modules/corporate_event/corporate_event/README.md b/modules/corporate-event/backend/modules/corporate_event/corporate_event/README.md new file mode 100644 index 000000000..1999efb67 --- /dev/null +++ b/modules/corporate-event/backend/modules/corporate_event/corporate_event/README.md @@ -0,0 +1,23 @@ +## corporate-event backend configuration and information + +## Module description + +This module is a complete corporate event app template. + +## Features + +- [x] This module includes migrations. +- [ ] This module includes environment variables. +- [x] This module requires manual configurations. +- [ ] This module can be configured with module options. + +## Environment variables + +```bash +ADMIN_EMAIL_RECEIVERS="email1@gmail.com,email2@gmail.com" +``` + + +## API details + +Detailed API spec is available [here](./event_module_collection.json) in postman collection diff --git a/modules/corporate-event/backend/modules/corporate_event/corporate_event/__init__.py b/modules/corporate-event/backend/modules/corporate_event/corporate_event/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/modules/corporate-event/backend/modules/corporate_event/corporate_event/admin.py b/modules/corporate-event/backend/modules/corporate_event/corporate_event/admin.py new file mode 100644 index 000000000..14a88f367 --- /dev/null +++ b/modules/corporate-event/backend/modules/corporate_event/corporate_event/admin.py @@ -0,0 +1,68 @@ +from django.contrib import admin + +from .models import Session, UserSession, Activities, UserActivities, ConnectProfile, UserConnectRequest, \ + AboutTeamAndBoardMember, OfferigsPage, SessionAttachment, ActivitiesAttachment, MetaLink + + +class UserSessionAdmin(admin.TabularInline): + model = UserSession + extra = 0 + + +class SessionAttachmentAdmin(admin.TabularInline): + model = SessionAttachment + extra = 0 + + +class SessoinAdmin(admin.ModelAdmin): + list_display = ['title', 'date', 'start_time', 'session_number', 'sort'] + list_filter = ['date'] + inlines = [ + SessionAttachmentAdmin, + UserSessionAdmin, + ] + +# Register your models here. + +class UserActivitiesAdmin(admin.TabularInline): + model = UserActivities + extra = 0 + + +class ActivitiesAttachmentAdmin(admin.TabularInline): + model = ActivitiesAttachment + extra = 0 + + +class ActivitiesAdmin(admin.ModelAdmin): + list_display = ['title', 'start_time', 'description'] + inlines = [ + ActivitiesAttachmentAdmin, + UserActivitiesAdmin, + ] + +class ConnectProfileAdmin(admin.ModelAdmin): + list_display = ['user', 'designation', 'company'] + + +class UserConnectRequestAdmin(admin.ModelAdmin): + list_display = ['requester', 'requestee', 'status'] + list_filter = ['status'] + + +class AboutTeamAndBoardMemberAdmin(admin.ModelAdmin): + list_display = ['select', 'connect_user'] + list_filter = ['select'] + + +class OfferigsPageAdmin(admin.ModelAdmin): + list_display = ['title', 'slug', 'sort', 'is_active'] + + +admin.site.register(Session, SessoinAdmin) +admin.site.register(Activities, ActivitiesAdmin) +admin.site.register(ConnectProfile, ConnectProfileAdmin) +admin.site.register(UserConnectRequest, UserConnectRequestAdmin) +admin.site.register(AboutTeamAndBoardMember, AboutTeamAndBoardMemberAdmin) +admin.site.register(OfferigsPage, OfferigsPageAdmin) +admin.site.register(MetaLink) \ No newline at end of file diff --git a/modules/corporate-event/backend/modules/corporate_event/corporate_event/api/__init__.py b/modules/corporate-event/backend/modules/corporate_event/corporate_event/api/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/modules/corporate-event/backend/modules/corporate_event/corporate_event/api/v1/__init__.py b/modules/corporate-event/backend/modules/corporate_event/corporate_event/api/v1/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/modules/corporate-event/backend/modules/corporate_event/corporate_event/api/v1/serializers.py b/modules/corporate-event/backend/modules/corporate_event/corporate_event/api/v1/serializers.py new file mode 100644 index 000000000..189f3c130 --- /dev/null +++ b/modules/corporate-event/backend/modules/corporate_event/corporate_event/api/v1/serializers.py @@ -0,0 +1,147 @@ +from allauth.account import app_settings as allauth_settings +from allauth.account.adapter import get_adapter +from allauth.account.forms import ResetPasswordForm +from allauth.account.utils import setup_user_email +from allauth.utils import email_address_exists, generate_unique_username +from django.contrib.auth import get_user_model +from django.http import HttpRequest +from django.utils.translation import ugettext_lazy as _ +from rest_framework import serializers + +from modules.corporate_event.corporate_event.models import OfferigsPage, Activities, UserConnectRequest, ConnectProfile, AboutTeamAndBoardMember, Session, \ + UserSession, SessionAttachment, ActivitiesAttachment, UserActivities + +from home.api.v1.serializers import UserSerializer + +class ActivitiesAttachmentSerializer(serializers.ModelSerializer): + class Meta: + model = ActivitiesAttachment + fields = '__all__' + +class SessionAttachmentSerializer(serializers.ModelSerializer): + class Meta: + model = SessionAttachment + fields = '__all__' + + +class UserSessionSerializer(serializers.ModelSerializer): + attachments = serializers.SerializerMethodField() + + def get_attachments(self, obj): + return SessionAttachmentSerializer(obj.session_attachment.all(), many=True, context=self.context).data + + class Meta: + model = Session + fields = [ + 'id', 'title', 'date', 'start_time', 'session_number', 'image', 'sort', 'description', 'attachments' + ] + extra_kwargs = { + "user": {"required": False} + } + + +class EventsActivitySerializer(serializers.ModelSerializer): + attachments = serializers.SerializerMethodField() + + def get_attachments(self, obj): + return ActivitiesAttachmentSerializer(obj.activity_attachment.all(), many=True, context=self.context).data + + class Meta: + model = Activities + fields = '__all__' + + +class UserRequestSerializer(serializers.ModelSerializer): + class Meta: + model = UserConnectRequest + fields = '__all__' + extra_kwargs = { + "requester": {"required": False} + } + + +class ConnectProfileSerializer(serializers.ModelSerializer): + user = UserSerializer(read_only=True) + + class Meta: + model = ConnectProfile + fields = '__all__' + + +class AboutTeamAndBoardSerializer(serializers.ModelSerializer): + connect_user = ConnectProfileSerializer(read_only=True) + + class Meta: + model = AboutTeamAndBoardMember + fields = ['select', 'connect_user'] + ordering = ['connect_user__user__last_name'] + + +class OfferigsPageSerializer(serializers.ModelSerializer): + + class Meta: + model = OfferigsPage + fields = '__all__' + + +class HomeSessionSerializer(serializers.ModelSerializer): + start_time = serializers.TimeField(format="%I:%M %p", required=False, source='session.start_time') + title = serializers.CharField(required=False, source='session.title') + description = serializers.CharField(required=False, source='session.description') + image = serializers.ImageField(required=False, source='session.image') + type = serializers.SerializerMethodField() + attachments = serializers.SerializerMethodField() + start_time_stamp = serializers.SerializerMethodField() + + def get_start_time_stamp(self, obj): + return obj.session.start_time + + def get_type(self, obj): + return "session" + + def get_attachments(self, obj): + all_session_attachments = self.context.get('all_session_attachments') + session_id = obj.session.id + if not all_session_attachments: + all_session_attachments = obj.session.session_attachment.all() + return SessionAttachmentSerializer( + all_session_attachments.filter(session_id=session_id), many=True, + context=self.context + ).data + + class Meta: + model = UserSession + fields = '__all__' + + + + +class HomeActivitiesSerializer(serializers.ModelSerializer): + start_time = serializers.TimeField(format="%I:%M %p", required=False, source='activity.start_time') + title = serializers.CharField(required=False, source='activity.title') + description = serializers.CharField(required=False, source='activity.description') + image = serializers.ImageField(required=False, source='activity.image') + type = serializers.SerializerMethodField() + attachments = serializers.SerializerMethodField() + start_time_stamp = serializers.SerializerMethodField() + + def get_type(self, obj): + return "activity" + + def get_start_time_stamp(self, obj): + return obj.activity.start_time + + def get_attachments(self, obj): + all_activity_attachments = self.context.get('all_activity_attachments') + activity_id = obj.activity.id + if not all_activity_attachments: + all_activity_attachments = obj.activity.activity_attachment.all() + return ActivitiesAttachmentSerializer( + all_activity_attachments.filter(activity_id=activity_id), many=True, + context=self.context + ).data + + class Meta: + model = UserActivities + fields = '__all__' + diff --git a/modules/corporate-event/backend/modules/corporate_event/corporate_event/api/v1/urls.py b/modules/corporate-event/backend/modules/corporate_event/corporate_event/api/v1/urls.py new file mode 100644 index 000000000..0b98978ee --- /dev/null +++ b/modules/corporate-event/backend/modules/corporate_event/corporate_event/api/v1/urls.py @@ -0,0 +1,31 @@ +from django.urls import path, include +from rest_framework.routers import DefaultRouter + +from .viewsets import ( + UserSessionViewset, + SessionActivitiesViewset, + HomeViewSets, + UserConnectViewSet, + UserRequestViewSet, + AboutTeamAndBoardViewSet, + confirm_view, + OfferigsPageViewSet, + MetaLinkAPIView +) + +router = DefaultRouter() +router.register("user-session", UserSessionViewset, basename="user-session") +router.register("session/activity", SessionActivitiesViewset, basename="activities") +router.register("home", HomeViewSets, basename="home") +router.register("connect", UserConnectViewSet, basename="connect") +router.register("connect/accept", UserRequestViewSet, basename="connect-accept") +router.register("board-team", AboutTeamAndBoardViewSet, basename="board-team") +router.register("offerings", OfferigsPageViewSet, basename="offerings") + + +urlpatterns = [ + path("", include(router.urls)), + path('confirm/', confirm_view, name='confirm_view'), + path('meta_link/', MetaLinkAPIView.as_view(), name='meta_link') + +] diff --git a/modules/corporate-event/backend/modules/corporate_event/corporate_event/api/v1/viewsets.py b/modules/corporate-event/backend/modules/corporate_event/corporate_event/api/v1/viewsets.py new file mode 100644 index 000000000..19938ad23 --- /dev/null +++ b/modules/corporate-event/backend/modules/corporate_event/corporate_event/api/v1/viewsets.py @@ -0,0 +1,201 @@ +import os +from django.db.models import F +from django.http import HttpResponseRedirect +from rest_framework import status +from rest_framework.authentication import SessionAuthentication, TokenAuthentication +from rest_framework.decorators import action +from rest_framework.response import Response +from rest_framework.viewsets import ModelViewSet +from rest_framework.views import APIView + +from .serializers import ( + UserSessionSerializer, EventsActivitySerializer, UserRequestSerializer, ConnectProfileSerializer, + AboutTeamAndBoardSerializer, OfferigsPageSerializer, HomeSessionSerializer, HomeActivitiesSerializer +) +from modules.corporate_event.corporate_event.models import UserSession, Activities, UserConnectRequest, ConnectProfile, AboutTeamAndBoardMember, \ + UserActivities, Session, OfferigsPage, SessionAttachment, ActivitiesAttachment, MetaLink + +from modules.corporate_event.corporate_event.utils import send_invitation_email + + + +class UserSessionViewset(ModelViewSet): + authentication_classes = [SessionAuthentication, TokenAuthentication] + serializer_class = UserSessionSerializer + + def get_queryset(self): + return Session.objects.filter().all() + + def perform_create(self, serializer): + serializer.save(user=self.request.user) + + +class SessionActivitiesViewset(ModelViewSet): + authentication_classes = [SessionAuthentication, TokenAuthentication] + serializer_class = EventsActivitySerializer + + def get_queryset(self): + return Activities.objects.all() + + +class HomeViewSets(ModelViewSet): + queryset = UserSession.objects.all() + http_method_names = ['get'] + authentication_classes = [SessionAuthentication, TokenAuthentication] + + def get_queryset(self): + user = self.request.user + return self.queryset.filter(user=user) + + def list(self, request, *args, **kwargs): + event_dates = self.get_queryset().values('session__date').distinct() + activity_dates = UserActivities.objects.filter(user=self.request.user).values('activity__date').distinct() + event_dates = event_dates.union(activity_dates) + data = { + 'user': self.request.user.first_name, + 'data': [] + } + all_session_attachments = SessionAttachment.objects.all() + all_activity_attachments = ActivitiesAttachment.objects.all() + if event_dates: + for date in event_dates: + # add session and activity attachments lists + sessions = self.get_queryset().filter( + session__date=date.get('session__date') + ).select_related('session').prefetch_related('session__session_attachment') + s_data = HomeSessionSerializer(sessions, many=True, context={ + "request": request, "all_session_attachments": all_session_attachments, + }).data + + activities = UserActivities.objects.filter( + activity__date=date.get('session__date'), user=self.request.user + ).select_related('activity').prefetch_related('activity__activity_attachment') + a_data = HomeActivitiesSerializer(activities, many=True, context={ + "request": request, "all_activity_attachments": all_activity_attachments, + }).data + + all_sessions = s_data + a_data + + # sort sessions by date + all_sessions = sorted(all_sessions, key=lambda k: k['start_time_stamp']) + + data['data'].append({ + "date": str(date.get('session__date')), + "datestamp": date.get('session__date'), + "session_data": all_sessions + }) + # sort data by date + data['data'] = sorted(data['data'], key=lambda k: k['date']) + return Response(data) + + +class UserConnectViewSet(ModelViewSet): + queryset = ConnectProfile.objects.all() + authentication_classes = [SessionAuthentication, TokenAuthentication] + serializer_class = ConnectProfileSerializer + + + def get_queryset(self): + return ConnectProfile.objects.filter( + show_profile=True + ).order_by( + # alphabetical order of last name ascending + F('user__last_name').asc(nulls_last=True) + ) + + @action(methods=['post'], detail=False) + def send_request(self, request): + ADMIN_EMAIL_RECEIVERS = os.environ.get('ADMIN_EMAIL_RECEIVERS', "") + ADMIN_EMAIL_RECEIVERS = ADMIN_EMAIL_RECEIVERS.split(',') + try: + user = self.request.user + requestee = request.data.get('email') + requestee_user = self.queryset.get(user__email=requestee) + if requestee_user: + try: + if UserConnectRequest.objects.filter(requester=user, requestee__user__email=requestee, + status="Pending").exists(): + return Response({"message": "Invitation is already sent to this user"}, status=status.HTTP_400_BAD_REQUEST) + serializer = UserRequestSerializer(data={"requester": user.id, "requestee": requestee_user.id}) + serializer.is_valid(raise_exception=True) + serializer.save() + send_invitation_email( + recipient_email=ADMIN_EMAIL_RECEIVERS, + sender_email=user.email, + requestee_user=requestee_user.user, + sender=user, + host=request.get_host() + ) + except Exception as e: + return Response({"error": e.args}, status=status.HTTP_400_BAD_REQUEST) + + return Response( + {'message': "your request has been submitted to the 3Seven Concierge Team", 'status': status.HTTP_200_OK}, + status=status.HTTP_200_OK) + except Exception as e: + return Response({"error": e.args, "status": status.HTTP_400_BAD_REQUEST}) + + +class UserRequestViewSet(ModelViewSet): + queryset = UserConnectRequest.objects.all() + serializer_class = UserRequestSerializer + authentication_classes = [SessionAuthentication, TokenAuthentication] + + def get_queryset(self): + user = self.request.user + return self.queryset.filter(requestee__user=user) + + def perform_update(self, serializer): + serializer.save(status=self.request.data['status']) + + +class AboutTeamAndBoardViewSet(ModelViewSet): + queryset = AboutTeamAndBoardMember.objects.all() + serializer_class = AboutTeamAndBoardSerializer + authentication_classes = [SessionAuthentication, TokenAuthentication] + + def get_queryset(self): + return self.queryset + + @action(methods=['get'], detail=False) + def team_members(self, request): + response = self.get_queryset().filter(select='Team') + serializer = AboutTeamAndBoardSerializer(data=list(response), many=True, context={"request": request}) + serializer.is_valid() + return Response(serializer.data) + + @action(methods=['get'], detail=False) + def board_members(self, request): + response = self.get_queryset().filter(select='Board') + serializer = AboutTeamAndBoardSerializer(data=list(response), many=True, context={"request": request}) + serializer.is_valid() + return Response(serializer.data) + + +def confirm_view(request): + email = request.GET.get('email') + if user_connect := UserConnectRequest.objects.filter(requestee__user__email=email, status='Pending'): + user_connect.update(status="Accepted") + + return render(request, 'confirm.html') + + +class OfferigsPageViewSet(ModelViewSet): + serializer_class = OfferigsPageSerializer + authentication_classes = [SessionAuthentication, TokenAuthentication] + + def get_queryset(self): + return OfferigsPage.objects.all() + + +class MetaLinkAPIView(APIView): + def get(self, request): + slug = request.GET.get('slug') + link = MetaLink.objects.filter(slug=slug).first() + if link: + if link.file: + return HttpResponseRedirect(link.file.url) + else: + return HttpResponseRedirect(link.link) + else: + return Response({"message": "Not found"}, status=status.HTTP_404_NOT_FOUND) \ No newline at end of file diff --git a/modules/corporate-event/backend/modules/corporate_event/corporate_event/apps.py b/modules/corporate-event/backend/modules/corporate_event/corporate_event/apps.py new file mode 100644 index 000000000..e69de29bb diff --git a/modules/corporate-event/backend/modules/corporate_event/corporate_event/event_module_collection.json b/modules/corporate-event/backend/modules/corporate_event/corporate_event/event_module_collection.json new file mode 100644 index 000000000..e5d441857 --- /dev/null +++ b/modules/corporate-event/backend/modules/corporate_event/corporate_event/event_module_collection.json @@ -0,0 +1,13513 @@ +{ + "info": { + "_postman_id": "03ed3f80-5be1-4d3f-b87e-6ff66e9995cc", + "name": "event_app_demo_44692 API", + "description": "API documentation for event_app_demo_44692 App", + "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json", + "_exporter_id": "3611611", + "_collection_link": "https://orange-flare-127240.postman.co/workspace/eb02d1dd-eac1-41ce-82f3-57cec08c2815/collection/3611611-03ed3f80-5be1-4d3f-b87e-6ff66e9995cc?action=share&source=collection_link&creator=3611611" + }, + "item": [ + { + "name": "api-docs", + "item": [ + { + "name": "schema", + "item": [ + { + "name": "api docs schema retrieve", + "event": [ + { + "listen": "test", + "script": { + "exec": [ + "", + "pm.test(\"Response status code is 200\", function () {", + " pm.response.to.have.status(200);", + "});", + "", + "", + "pm.test(\"Response body is an object\", function () {", + " const responseData = pm.response.json();", + " ", + " pm.expect(responseData).to.be.an('object');", + "});", + "", + "", + "pm.test(\"Presence of keys 'ide', 'voluptate___2', and 'reprehenderit_f' in the response\", function () {", + " const responseData = pm.response.json();", + " ", + " pm.expect(responseData).to.be.an('object');", + " pm.expect(responseData).to.include.all.keys('ide', 'voluptate___2', 'reprehenderit_f');", + "});", + "", + "", + "pm.test(\"Ensure that the keys in the response are non-empty objects\", function () {", + " const responseData = pm.response.json();", + " ", + " pm.expect(responseData).to.be.an('object');", + " Object.keys(responseData).forEach(function(key) {", + " pm.expect(responseData[key]).to.be.an('object').and.to.not.be.empty;", + " });", + "});", + "", + "", + "pm.test(\"Validate keys in the response\", function () {", + " const responseData = pm.response.json();", + " ", + " pm.expect(responseData).to.be.an('object');", + " pm.expect(Object.keys(responseData)).to.include.members([\"ide\", \"voluptate___2\", \"reprehenderit_f\"]);", + "});", + "", + "" + ], + "type": "text/javascript" + } + } + ], + "request": { + "auth": { + "type": "apikey", + "apikey": [ + { + "key": "key", + "value": "sessionid", + "type": "string" + }, + { + "key": "value", + "value": "{{apiKey}}", + "type": "string" + }, + { + "key": "in", + "value": "header", + "type": "string" + } + ] + }, + "method": "GET", + "header": [ + { + "key": "Accept", + "value": "application/vnd.oai.openapi+json" + } + ], + "url": { + "raw": "{{baseUrl}}/api-docs/schema/?lang=en-au", + "host": [ + "{{baseUrl}}" + ], + "path": [ + "api-docs", + "schema", + "" + ], + "query": [ + { + "key": "lang", + "value": "en-au" + } + ] + }, + "description": "OpenApi3 schema for this API. Format can be selected via content negotiation.\n\n- YAML: application/vnd.oai.openapi\n- JSON: application/vnd.oai.openapi+json" + }, + "response": [ + { + "name": "Untitled Response", + "originalRequest": { + "method": "GET", + "header": [ + { + "key": "Accept", + "value": "application/vnd.oai.openapi+json" + }, + { + "description": "Added as a part of security scheme: apikey", + "key": "sessionid", + "value": "" + } + ], + "url": { + "raw": "{{baseUrl}}/api-docs/schema/?lang=en-au", + "host": [ + "{{baseUrl}}" + ], + "path": [ + "api-docs", + "schema", + "" + ], + "query": [ + { + "key": "lang", + "value": "en-au" + } + ] + } + }, + "status": "OK", + "code": 200, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"ide\": {},\n \"voluptate___2\": {},\n \"reprehenderit_f\": {}\n}" + } + ] + } + ] + } + ] + }, + { + "name": "api", + "item": [ + { + "name": "v1", + "item": [ + { + "name": "login", + "item": [ + { + "name": "api v1 login create", + "request": { + "auth": { + "type": "apikey", + "apikey": [ + { + "key": "key", + "value": "sessionid", + "type": "string" + }, + { + "key": "value", + "value": "{{apiKey}}", + "type": "string" + }, + { + "key": "in", + "value": "header", + "type": "string" + } + ] + }, + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/x-www-form-urlencoded" + }, + { + "key": "Accept", + "value": "application/json" + } + ], + "body": { + "mode": "urlencoded", + "urlencoded": [ + { + "key": "password", + "value": "", + "description": "(Required) " + }, + { + "key": "token", + "value": "", + "description": "(Required) " + }, + { + "key": "username", + "value": "", + "description": "(Required) " + } + ] + }, + "url": { + "raw": "{{baseUrl}}/api/v1/login/", + "host": [ + "{{baseUrl}}" + ], + "path": [ + "api", + "v1", + "login", + "" + ] + }, + "description": "Based on rest_framework.authtoken.views.ObtainAuthToken" + }, + "response": [ + { + "name": "Untitled Response", + "originalRequest": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/x-www-form-urlencoded" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": "Added as a part of security scheme: apikey", + "key": "sessionid", + "value": "" + } + ], + "body": { + "mode": "urlencoded", + "urlencoded": [ + { + "key": "password", + "value": "", + "description": "(Required) " + }, + { + "key": "token", + "value": "", + "description": "(Required) " + }, + { + "key": "username", + "value": "", + "description": "(Required) " + } + ] + }, + "url": { + "raw": "{{baseUrl}}/api/v1/login/", + "host": [ + "{{baseUrl}}" + ], + "path": [ + "api", + "v1", + "login", + "" + ] + } + }, + "status": "Created", + "code": 201, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"password\": \"\",\n \"token\": \"\",\n \"username\": \"\"\n}" + } + ] + } + ] + }, + { + "name": "signup", + "item": [ + { + "name": "api v1 signup create", + "request": { + "auth": { + "type": "apikey", + "apikey": [ + { + "key": "key", + "value": "sessionid", + "type": "string" + }, + { + "key": "value", + "value": "{{apiKey}}", + "type": "string" + }, + { + "key": "in", + "value": "header", + "type": "string" + } + ] + }, + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/x-www-form-urlencoded" + }, + { + "key": "Accept", + "value": "application/json" + } + ], + "body": { + "mode": "urlencoded", + "urlencoded": [ + { + "key": "email", + "value": "", + "description": "(Required) " + }, + { + "key": "id", + "value": "", + "description": "(Required) " + }, + { + "key": "password", + "value": "", + "description": "(Required) " + }, + { + "key": "name", + "value": "" + } + ] + }, + "url": { + "raw": "{{baseUrl}}/api/v1/signup/", + "host": [ + "{{baseUrl}}" + ], + "path": [ + "api", + "v1", + "signup", + "" + ] + } + }, + "response": [ + { + "name": "Untitled Response", + "originalRequest": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/x-www-form-urlencoded" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": "Added as a part of security scheme: apikey", + "key": "sessionid", + "value": "" + } + ], + "body": { + "mode": "urlencoded", + "urlencoded": [ + { + "key": "email", + "value": "", + "description": "(Required) " + }, + { + "key": "id", + "value": "", + "description": "(Required) " + }, + { + "key": "password", + "value": "", + "description": "(Required) " + }, + { + "key": "name", + "value": "" + } + ] + }, + "url": { + "raw": "{{baseUrl}}/api/v1/signup/", + "host": [ + "{{baseUrl}}" + ], + "path": [ + "api", + "v1", + "signup", + "" + ] + } + }, + "status": "Created", + "code": 201, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"email\": \"\",\n \"id\": \"\",\n \"password\": \"\",\n \"name\": \"\"\n}" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": "modules", + "item": [ + { + "name": "corporate-event", + "item": [ + { + "name": "api", + "item": [ + { + "name": "v1", + "item": [ + { + "name": "board-team", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": "modules corporate event api v1 board team retrieve", + "request": { + "auth": { + "type": "apikey", + "apikey": [ + { + "key": "key", + "value": "sessionid", + "type": "string" + }, + { + "key": "value", + "value": "{{apiKey}}", + "type": "string" + }, + { + "key": "in", + "value": "header", + "type": "string" + } + ] + }, + "method": "GET", + "header": [ + { + "key": "Accept", + "value": "application/json" + } + ], + "url": { + "raw": "{{baseUrl}}/modules/corporate-event/api/v1/board-team/:id/", + "host": [ + "{{baseUrl}}" + ], + "path": [ + "modules", + "corporate-event", + "api", + "v1", + "board-team", + ":id", + "" + ], + "variable": [ + { + "key": "id", + "value": "", + "description": "(Required) A unique integer value identifying this about team and board member." + } + ] + } + }, + "response": [ + { + "name": "Untitled Response", + "originalRequest": { + "method": "GET", + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": "Added as a part of security scheme: apikey", + "key": "sessionid", + "value": "" + } + ], + "url": { + "raw": "{{baseUrl}}/modules/corporate-event/api/v1/board-team/:id/", + "host": [ + "{{baseUrl}}" + ], + "path": [ + "modules", + "corporate-event", + "api", + "v1", + "board-team", + ":id", + "" + ], + "variable": [ + { + "key": "id" + } + ] + } + }, + "status": "OK", + "code": 200, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"connect_user\": {\n \"company\": \"\",\n \"description\": \"\",\n \"designation\": \"\",\n \"id\": \"\",\n \"user\": {\n \"id\": \"\",\n \"email\": \"\",\n \"name\": \"\"\n },\n \"website\": \"\",\n \"image\": \"\",\n \"show_profile\": \"\"\n },\n \"select\": \"Team\"\n}" + } + ] + }, + { + "name": "modules corporate event api v1 board team update", + "request": { + "auth": { + "type": "apikey", + "apikey": [ + { + "key": "key", + "value": "sessionid", + "type": "string" + }, + { + "key": "value", + "value": "{{apiKey}}", + "type": "string" + }, + { + "key": "in", + "value": "header", + "type": "string" + } + ] + }, + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/x-www-form-urlencoded" + }, + { + "key": "Accept", + "value": "application/json" + } + ], + "body": { + "mode": "urlencoded", + "urlencoded": [ + { + "key": "company", + "value": "", + "description": "(Required) " + }, + { + "key": "description", + "value": "", + "description": "(Required) " + }, + { + "key": "designation", + "value": "", + "description": "(Required) " + }, + { + "key": "id", + "value": "", + "description": "(Required) " + }, + { + "key": "user", + "value": "[object Object]", + "description": "(Required) " + }, + { + "key": "website", + "value": "", + "description": "(Required) " + }, + { + "key": "image", + "value": "", + "description": "(Required) " + }, + { + "key": "show_profile", + "value": "", + "description": "(Required) " + }, + { + "key": "select", + "value": "Team", + "description": "(Required) * `Team` - Team\n* `Board` - Board" + } + ] + }, + "url": { + "raw": "{{baseUrl}}/modules/corporate-event/api/v1/board-team/:id/", + "host": [ + "{{baseUrl}}" + ], + "path": [ + "modules", + "corporate-event", + "api", + "v1", + "board-team", + ":id", + "" + ], + "variable": [ + { + "key": "id", + "value": "", + "description": "(Required) A unique integer value identifying this about team and board member." + } + ] + } + }, + "response": [ + { + "name": "Untitled Response", + "originalRequest": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/x-www-form-urlencoded" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": "Added as a part of security scheme: apikey", + "key": "sessionid", + "value": "" + } + ], + "body": { + "mode": "urlencoded", + "urlencoded": [ + { + "key": "company", + "value": "", + "description": "(Required) " + }, + { + "key": "description", + "value": "", + "description": "(Required) " + }, + { + "key": "designation", + "value": "", + "description": "(Required) " + }, + { + "key": "id", + "value": "", + "description": "(Required) " + }, + { + "key": "user", + "value": "[object Object]", + "description": "(Required) " + }, + { + "key": "website", + "value": "", + "description": "(Required) " + }, + { + "key": "image", + "value": "", + "description": "(Required) " + }, + { + "key": "show_profile", + "value": "", + "description": "(Required) " + }, + { + "key": "select", + "value": "Team", + "description": "(Required) * `Team` - Team\n* `Board` - Board" + } + ] + }, + "url": { + "raw": "{{baseUrl}}/modules/corporate-event/api/v1/board-team/:id/", + "host": [ + "{{baseUrl}}" + ], + "path": [ + "modules", + "corporate-event", + "api", + "v1", + "board-team", + ":id", + "" + ], + "variable": [ + { + "key": "id" + } + ] + } + }, + "status": "OK", + "code": 200, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"connect_user\": {\n \"company\": \"\",\n \"description\": \"\",\n \"designation\": \"\",\n \"id\": \"\",\n \"user\": {\n \"id\": \"\",\n \"email\": \"\",\n \"name\": \"\"\n },\n \"website\": \"\",\n \"image\": \"\",\n \"show_profile\": \"\"\n },\n \"select\": \"Team\"\n}" + } + ] + }, + { + "name": "modules corporate event api v1 board team partial update", + "request": { + "auth": { + "type": "apikey", + "apikey": [ + { + "key": "key", + "value": "sessionid", + "type": "string" + }, + { + "key": "value", + "value": "{{apiKey}}", + "type": "string" + }, + { + "key": "in", + "value": "header", + "type": "string" + } + ] + }, + "method": "PATCH", + "header": [ + { + "key": "Content-Type", + "value": "application/x-www-form-urlencoded" + }, + { + "key": "Accept", + "value": "application/json" + } + ], + "body": { + "mode": "urlencoded", + "urlencoded": [ + { + "key": "select", + "value": "Team", + "description": "* `Team` - Team\n* `Board` - Board" + }, + { + "key": "company", + "value": "" + }, + { + "key": "description", + "value": "" + }, + { + "key": "designation", + "value": "" + }, + { + "key": "id", + "value": "" + }, + { + "key": "user", + "value": "[object Object]" + }, + { + "key": "website", + "value": "" + }, + { + "key": "image", + "value": "" + }, + { + "key": "show_profile", + "value": "" + } + ] + }, + "url": { + "raw": "{{baseUrl}}/modules/corporate-event/api/v1/board-team/:id/", + "host": [ + "{{baseUrl}}" + ], + "path": [ + "modules", + "corporate-event", + "api", + "v1", + "board-team", + ":id", + "" + ], + "variable": [ + { + "key": "id", + "value": "", + "description": "(Required) A unique integer value identifying this about team and board member." + } + ] + } + }, + "response": [ + { + "name": "Untitled Response", + "originalRequest": { + "method": "PATCH", + "header": [ + { + "key": "Content-Type", + "value": "application/x-www-form-urlencoded" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": "Added as a part of security scheme: apikey", + "key": "sessionid", + "value": "" + } + ], + "body": { + "mode": "urlencoded", + "urlencoded": [ + { + "key": "select", + "value": "Team", + "description": "* `Team` - Team\n* `Board` - Board" + }, + { + "key": "company", + "value": "" + }, + { + "key": "description", + "value": "" + }, + { + "key": "designation", + "value": "" + }, + { + "key": "id", + "value": "" + }, + { + "key": "user", + "value": "[object Object]" + }, + { + "key": "website", + "value": "" + }, + { + "key": "image", + "value": "" + }, + { + "key": "show_profile", + "value": "" + } + ] + }, + "url": { + "raw": "{{baseUrl}}/modules/corporate-event/api/v1/board-team/:id/", + "host": [ + "{{baseUrl}}" + ], + "path": [ + "modules", + "corporate-event", + "api", + "v1", + "board-team", + ":id", + "" + ], + "variable": [ + { + "key": "id" + } + ] + } + }, + "status": "OK", + "code": 200, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"connect_user\": {\n \"company\": \"\",\n \"description\": \"\",\n \"designation\": \"\",\n \"id\": \"\",\n \"user\": {\n \"id\": \"\",\n \"email\": \"\",\n \"name\": \"\"\n },\n \"website\": \"\",\n \"image\": \"\",\n \"show_profile\": \"\"\n },\n \"select\": \"Team\"\n}" + } + ] + }, + { + "name": "modules corporate event api v1 board team destroy", + "request": { + "auth": { + "type": "apikey", + "apikey": [ + { + "key": "key", + "value": "sessionid", + "type": "string" + }, + { + "key": "value", + "value": "{{apiKey}}", + "type": "string" + }, + { + "key": "in", + "value": "header", + "type": "string" + } + ] + }, + "method": "DELETE", + "header": [], + "url": { + "raw": "{{baseUrl}}/modules/corporate-event/api/v1/board-team/:id/", + "host": [ + "{{baseUrl}}" + ], + "path": [ + "modules", + "corporate-event", + "api", + "v1", + "board-team", + ":id", + "" + ], + "variable": [ + { + "key": "id", + "value": "", + "description": "(Required) A unique integer value identifying this about team and board member." + } + ] + } + }, + "response": [ + { + "name": "No response body", + "originalRequest": { + "method": "DELETE", + "header": [ + { + "description": "Added as a part of security scheme: apikey", + "key": "sessionid", + "value": "" + } + ], + "url": { + "raw": "{{baseUrl}}/modules/corporate-event/api/v1/board-team/:id/", + "host": [ + "{{baseUrl}}" + ], + "path": [ + "modules", + "corporate-event", + "api", + "v1", + "board-team", + ":id", + "" + ], + "variable": [ + { + "key": "id" + } + ] + } + }, + "status": "No Content", + "code": 204, + "_postman_previewlanguage": "text", + "header": [], + "cookie": [], + "body": "" + } + ] + } + ] + }, + { + "name": "board_members", + "item": [ + { + "name": "modules corporate event api v1 board team board members retrieve", + "request": { + "auth": { + "type": "apikey", + "apikey": [ + { + "key": "key", + "value": "sessionid", + "type": "string" + }, + { + "key": "value", + "value": "{{apiKey}}", + "type": "string" + }, + { + "key": "in", + "value": "header", + "type": "string" + } + ] + }, + "method": "GET", + "header": [ + { + "key": "Accept", + "value": "application/json" + } + ], + "url": { + "raw": "{{baseUrl}}/modules/corporate-event/api/v1/board-team/board_members/", + "host": [ + "{{baseUrl}}" + ], + "path": [ + "modules", + "corporate-event", + "api", + "v1", + "board-team", + "board_members", + "" + ] + } + }, + "response": [ + { + "name": "Untitled Response", + "originalRequest": { + "method": "GET", + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": "Added as a part of security scheme: apikey", + "key": "sessionid", + "value": "" + } + ], + "url": { + "raw": "{{baseUrl}}/modules/corporate-event/api/v1/board-team/board_members/", + "host": [ + "{{baseUrl}}" + ], + "path": [ + "modules", + "corporate-event", + "api", + "v1", + "board-team", + "board_members", + "" + ] + } + }, + "status": "OK", + "code": 200, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"connect_user\": {\n \"company\": \"\",\n \"description\": \"\",\n \"designation\": \"\",\n \"id\": \"\",\n \"user\": {\n \"id\": \"\",\n \"email\": \"\",\n \"name\": \"\"\n },\n \"website\": \"\",\n \"image\": \"\",\n \"show_profile\": \"\"\n },\n \"select\": \"Team\"\n}" + } + ] + } + ] + }, + { + "name": "team_members", + "item": [ + { + "name": "modules corporate event api v1 board team team members retrieve", + "request": { + "auth": { + "type": "apikey", + "apikey": [ + { + "key": "key", + "value": "sessionid", + "type": "string" + }, + { + "key": "value", + "value": "{{apiKey}}", + "type": "string" + }, + { + "key": "in", + "value": "header", + "type": "string" + } + ] + }, + "method": "GET", + "header": [ + { + "key": "Accept", + "value": "application/json" + } + ], + "url": { + "raw": "{{baseUrl}}/modules/corporate-event/api/v1/board-team/team_members/", + "host": [ + "{{baseUrl}}" + ], + "path": [ + "modules", + "corporate-event", + "api", + "v1", + "board-team", + "team_members", + "" + ] + } + }, + "response": [ + { + "name": "Untitled Response", + "originalRequest": { + "method": "GET", + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": "Added as a part of security scheme: apikey", + "key": "sessionid", + "value": "" + } + ], + "url": { + "raw": "{{baseUrl}}/modules/corporate-event/api/v1/board-team/team_members/", + "host": [ + "{{baseUrl}}" + ], + "path": [ + "modules", + "corporate-event", + "api", + "v1", + "board-team", + "team_members", + "" + ] + } + }, + "status": "OK", + "code": 200, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"connect_user\": {\n \"company\": \"\",\n \"description\": \"\",\n \"designation\": \"\",\n \"id\": \"\",\n \"user\": {\n \"id\": \"\",\n \"email\": \"\",\n \"name\": \"\"\n },\n \"website\": \"\",\n \"image\": \"\",\n \"show_profile\": \"\"\n },\n \"select\": \"Team\"\n}" + } + ] + } + ] + }, + { + "name": "modules corporate event api v1 board team list", + "request": { + "auth": { + "type": "apikey", + "apikey": [ + { + "key": "key", + "value": "sessionid", + "type": "string" + }, + { + "key": "value", + "value": "{{apiKey}}", + "type": "string" + }, + { + "key": "in", + "value": "header", + "type": "string" + } + ] + }, + "method": "GET", + "header": [ + { + "key": "Accept", + "value": "application/json" + } + ], + "url": { + "raw": "{{baseUrl}}/modules/corporate-event/api/v1/board-team/", + "host": [ + "{{baseUrl}}" + ], + "path": [ + "modules", + "corporate-event", + "api", + "v1", + "board-team", + "" + ] + } + }, + "response": [ + { + "name": "Untitled Response", + "originalRequest": { + "method": "GET", + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": "Added as a part of security scheme: apikey", + "key": "sessionid", + "value": "" + } + ], + "url": { + "raw": "{{baseUrl}}/modules/corporate-event/api/v1/board-team/", + "host": [ + "{{baseUrl}}" + ], + "path": [ + "modules", + "corporate-event", + "api", + "v1", + "board-team", + "" + ] + } + }, + "status": "OK", + "code": 200, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "[\n {\n \"connect_user\": {\n \"company\": \"\",\n \"description\": \"\",\n \"designation\": \"\",\n \"id\": \"\",\n \"user\": {\n \"id\": \"\",\n \"email\": \"\",\n \"name\": \"\"\n },\n \"website\": \"\",\n \"image\": \"\",\n \"show_profile\": \"\"\n },\n \"select\": \"Board\"\n },\n {\n \"connect_user\": {\n \"company\": \"\",\n \"description\": \"\",\n \"designation\": \"\",\n \"id\": \"\",\n \"user\": {\n \"id\": \"\",\n \"email\": \"\",\n \"name\": \"\"\n },\n \"website\": \"\",\n \"image\": \"\",\n \"show_profile\": \"\"\n },\n \"select\": \"Team\"\n }\n]" + } + ] + }, + { + "name": "modules corporate event api v1 board team create", + "request": { + "auth": { + "type": "apikey", + "apikey": [ + { + "key": "key", + "value": "sessionid", + "type": "string" + }, + { + "key": "value", + "value": "{{apiKey}}", + "type": "string" + }, + { + "key": "in", + "value": "header", + "type": "string" + } + ] + }, + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/x-www-form-urlencoded" + }, + { + "key": "Accept", + "value": "application/json" + } + ], + "body": { + "mode": "urlencoded", + "urlencoded": [ + { + "key": "company", + "value": "", + "description": "(Required) " + }, + { + "key": "description", + "value": "", + "description": "(Required) " + }, + { + "key": "designation", + "value": "", + "description": "(Required) " + }, + { + "key": "id", + "value": "", + "description": "(Required) " + }, + { + "key": "user", + "value": "[object Object]", + "description": "(Required) " + }, + { + "key": "website", + "value": "", + "description": "(Required) " + }, + { + "key": "image", + "value": "", + "description": "(Required) " + }, + { + "key": "show_profile", + "value": "", + "description": "(Required) " + }, + { + "key": "select", + "value": "Team", + "description": "(Required) * `Team` - Team\n* `Board` - Board" + } + ] + }, + "url": { + "raw": "{{baseUrl}}/modules/corporate-event/api/v1/board-team/", + "host": [ + "{{baseUrl}}" + ], + "path": [ + "modules", + "corporate-event", + "api", + "v1", + "board-team", + "" + ] + } + }, + "response": [ + { + "name": "Untitled Response", + "originalRequest": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/x-www-form-urlencoded" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": "Added as a part of security scheme: apikey", + "key": "sessionid", + "value": "" + } + ], + "body": { + "mode": "urlencoded", + "urlencoded": [ + { + "key": "company", + "value": "", + "description": "(Required) " + }, + { + "key": "description", + "value": "", + "description": "(Required) " + }, + { + "key": "designation", + "value": "", + "description": "(Required) " + }, + { + "key": "id", + "value": "", + "description": "(Required) " + }, + { + "key": "user", + "value": "[object Object]", + "description": "(Required) " + }, + { + "key": "website", + "value": "", + "description": "(Required) " + }, + { + "key": "image", + "value": "", + "description": "(Required) " + }, + { + "key": "show_profile", + "value": "", + "description": "(Required) " + }, + { + "key": "select", + "value": "Team", + "description": "(Required) * `Team` - Team\n* `Board` - Board" + } + ] + }, + "url": { + "raw": "{{baseUrl}}/modules/corporate-event/api/v1/board-team/", + "host": [ + "{{baseUrl}}" + ], + "path": [ + "modules", + "corporate-event", + "api", + "v1", + "board-team", + "" + ] + } + }, + "status": "Created", + "code": 201, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"connect_user\": {\n \"company\": \"\",\n \"description\": \"\",\n \"designation\": \"\",\n \"id\": \"\",\n \"user\": {\n \"id\": \"\",\n \"email\": \"\",\n \"name\": \"\"\n },\n \"website\": \"\",\n \"image\": \"\",\n \"show_profile\": \"\"\n },\n \"select\": \"Team\"\n}" + } + ] + } + ] + }, + { + "name": "connect", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": "modules corporate event api v1 connect retrieve", + "request": { + "auth": { + "type": "apikey", + "apikey": [ + { + "key": "key", + "value": "sessionid", + "type": "string" + }, + { + "key": "value", + "value": "{{apiKey}}", + "type": "string" + }, + { + "key": "in", + "value": "header", + "type": "string" + } + ] + }, + "method": "GET", + "header": [ + { + "key": "Accept", + "value": "application/json" + } + ], + "url": { + "raw": "{{baseUrl}}/modules/corporate-event/api/v1/connect/:id/", + "host": [ + "{{baseUrl}}" + ], + "path": [ + "modules", + "corporate-event", + "api", + "v1", + "connect", + ":id", + "" + ], + "variable": [ + { + "key": "id", + "value": "", + "description": "(Required) A unique integer value identifying this connect profile." + } + ] + } + }, + "response": [ + { + "name": "Untitled Response", + "originalRequest": { + "method": "GET", + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": "Added as a part of security scheme: apikey", + "key": "sessionid", + "value": "" + } + ], + "url": { + "raw": "{{baseUrl}}/modules/corporate-event/api/v1/connect/:id/", + "host": [ + "{{baseUrl}}" + ], + "path": [ + "modules", + "corporate-event", + "api", + "v1", + "connect", + ":id", + "" + ], + "variable": [ + { + "key": "id" + } + ] + } + }, + "status": "OK", + "code": 200, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"company\": \"\",\n \"description\": \"\",\n \"designation\": \"\",\n \"id\": \"\",\n \"user\": {\n \"id\": \"\",\n \"email\": \"\",\n \"name\": \"\"\n },\n \"website\": \"\",\n \"image\": \"\",\n \"show_profile\": \"\"\n}" + } + ] + }, + { + "name": "modules corporate event api v1 connect update", + "request": { + "auth": { + "type": "apikey", + "apikey": [ + { + "key": "key", + "value": "sessionid", + "type": "string" + }, + { + "key": "value", + "value": "{{apiKey}}", + "type": "string" + }, + { + "key": "in", + "value": "header", + "type": "string" + } + ] + }, + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/x-www-form-urlencoded" + }, + { + "key": "Accept", + "value": "application/json" + } + ], + "body": { + "mode": "urlencoded", + "urlencoded": [ + { + "key": "company", + "value": "", + "description": "(Required) " + }, + { + "key": "description", + "value": "", + "description": "(Required) " + }, + { + "key": "designation", + "value": "", + "description": "(Required) " + }, + { + "key": "id", + "value": "", + "description": "(Required) " + }, + { + "key": "id", + "value": "", + "description": "(Required) " + }, + { + "key": "email", + "value": "", + "description": "(Required) " + }, + { + "key": "name", + "value": "", + "description": "(Required) " + }, + { + "key": "website", + "value": "", + "description": "(Required) " + }, + { + "key": "image", + "value": "" + }, + { + "key": "show_profile", + "value": "" + } + ] + }, + "url": { + "raw": "{{baseUrl}}/modules/corporate-event/api/v1/connect/:id/", + "host": [ + "{{baseUrl}}" + ], + "path": [ + "modules", + "corporate-event", + "api", + "v1", + "connect", + ":id", + "" + ], + "variable": [ + { + "key": "id", + "value": "", + "description": "(Required) A unique integer value identifying this connect profile." + } + ] + } + }, + "response": [ + { + "name": "Untitled Response", + "originalRequest": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/x-www-form-urlencoded" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": "Added as a part of security scheme: apikey", + "key": "sessionid", + "value": "" + } + ], + "body": { + "mode": "urlencoded", + "urlencoded": [ + { + "key": "company", + "value": "", + "description": "(Required) " + }, + { + "key": "description", + "value": "", + "description": "(Required) " + }, + { + "key": "designation", + "value": "", + "description": "(Required) " + }, + { + "key": "id", + "value": "", + "description": "(Required) " + }, + { + "key": "id", + "value": "", + "description": "(Required) " + }, + { + "key": "email", + "value": "", + "description": "(Required) " + }, + { + "key": "name", + "value": "", + "description": "(Required) " + }, + { + "key": "website", + "value": "", + "description": "(Required) " + }, + { + "key": "image", + "value": "" + }, + { + "key": "show_profile", + "value": "" + } + ] + }, + "url": { + "raw": "{{baseUrl}}/modules/corporate-event/api/v1/connect/:id/", + "host": [ + "{{baseUrl}}" + ], + "path": [ + "modules", + "corporate-event", + "api", + "v1", + "connect", + ":id", + "" + ], + "variable": [ + { + "key": "id" + } + ] + } + }, + "status": "OK", + "code": 200, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"company\": \"\",\n \"description\": \"\",\n \"designation\": \"\",\n \"id\": \"\",\n \"user\": {\n \"id\": \"\",\n \"email\": \"\",\n \"name\": \"\"\n },\n \"website\": \"\",\n \"image\": \"\",\n \"show_profile\": \"\"\n}" + } + ] + }, + { + "name": "modules corporate event api v1 connect partial update", + "request": { + "auth": { + "type": "apikey", + "apikey": [ + { + "key": "key", + "value": "sessionid", + "type": "string" + }, + { + "key": "value", + "value": "{{apiKey}}", + "type": "string" + }, + { + "key": "in", + "value": "header", + "type": "string" + } + ] + }, + "method": "PATCH", + "header": [ + { + "key": "Content-Type", + "value": "application/x-www-form-urlencoded" + }, + { + "key": "Accept", + "value": "application/json" + } + ], + "body": { + "mode": "urlencoded", + "urlencoded": [ + { + "key": "id", + "value": "" + }, + { + "key": "id", + "value": "" + }, + { + "key": "email", + "value": "" + }, + { + "key": "name", + "value": "" + }, + { + "key": "designation", + "value": "" + }, + { + "key": "image", + "value": "" + }, + { + "key": "company", + "value": "" + }, + { + "key": "website", + "value": "" + }, + { + "key": "description", + "value": "" + }, + { + "key": "show_profile", + "value": "" + } + ] + }, + "url": { + "raw": "{{baseUrl}}/modules/corporate-event/api/v1/connect/:id/", + "host": [ + "{{baseUrl}}" + ], + "path": [ + "modules", + "corporate-event", + "api", + "v1", + "connect", + ":id", + "" + ], + "variable": [ + { + "key": "id", + "value": "", + "description": "(Required) A unique integer value identifying this connect profile." + } + ] + } + }, + "response": [ + { + "name": "Untitled Response", + "originalRequest": { + "method": "PATCH", + "header": [ + { + "key": "Content-Type", + "value": "application/x-www-form-urlencoded" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": "Added as a part of security scheme: apikey", + "key": "sessionid", + "value": "" + } + ], + "body": { + "mode": "urlencoded", + "urlencoded": [ + { + "key": "id", + "value": "" + }, + { + "key": "id", + "value": "" + }, + { + "key": "email", + "value": "" + }, + { + "key": "name", + "value": "" + }, + { + "key": "designation", + "value": "" + }, + { + "key": "image", + "value": "" + }, + { + "key": "company", + "value": "" + }, + { + "key": "website", + "value": "" + }, + { + "key": "description", + "value": "" + }, + { + "key": "show_profile", + "value": "" + } + ] + }, + "url": { + "raw": "{{baseUrl}}/modules/corporate-event/api/v1/connect/:id/", + "host": [ + "{{baseUrl}}" + ], + "path": [ + "modules", + "corporate-event", + "api", + "v1", + "connect", + ":id", + "" + ], + "variable": [ + { + "key": "id" + } + ] + } + }, + "status": "OK", + "code": 200, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"company\": \"\",\n \"description\": \"\",\n \"designation\": \"\",\n \"id\": \"\",\n \"user\": {\n \"id\": \"\",\n \"email\": \"\",\n \"name\": \"\"\n },\n \"website\": \"\",\n \"image\": \"\",\n \"show_profile\": \"\"\n}" + } + ] + }, + { + "name": "modules corporate event api v1 connect destroy", + "request": { + "auth": { + "type": "apikey", + "apikey": [ + { + "key": "key", + "value": "sessionid", + "type": "string" + }, + { + "key": "value", + "value": "{{apiKey}}", + "type": "string" + }, + { + "key": "in", + "value": "header", + "type": "string" + } + ] + }, + "method": "DELETE", + "header": [], + "url": { + "raw": "{{baseUrl}}/modules/corporate-event/api/v1/connect/:id/", + "host": [ + "{{baseUrl}}" + ], + "path": [ + "modules", + "corporate-event", + "api", + "v1", + "connect", + ":id", + "" + ], + "variable": [ + { + "key": "id", + "value": "", + "description": "(Required) A unique integer value identifying this connect profile." + } + ] + } + }, + "response": [ + { + "name": "No response body", + "originalRequest": { + "method": "DELETE", + "header": [ + { + "description": "Added as a part of security scheme: apikey", + "key": "sessionid", + "value": "" + } + ], + "url": { + "raw": "{{baseUrl}}/modules/corporate-event/api/v1/connect/:id/", + "host": [ + "{{baseUrl}}" + ], + "path": [ + "modules", + "corporate-event", + "api", + "v1", + "connect", + ":id", + "" + ], + "variable": [ + { + "key": "id" + } + ] + } + }, + "status": "No Content", + "code": 204, + "_postman_previewlanguage": "text", + "header": [], + "cookie": [], + "body": "" + } + ] + } + ] + }, + { + "name": "accept", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": "modules corporate event api v1 connect accept retrieve", + "request": { + "auth": { + "type": "apikey", + "apikey": [ + { + "key": "key", + "value": "sessionid", + "type": "string" + }, + { + "key": "value", + "value": "{{apiKey}}", + "type": "string" + }, + { + "key": "in", + "value": "header", + "type": "string" + } + ] + }, + "method": "GET", + "header": [ + { + "key": "Accept", + "value": "application/json" + } + ], + "url": { + "raw": "{{baseUrl}}/modules/corporate-event/api/v1/connect/accept/:id/", + "host": [ + "{{baseUrl}}" + ], + "path": [ + "modules", + "corporate-event", + "api", + "v1", + "connect", + "accept", + ":id", + "" + ], + "variable": [ + { + "key": "id", + "value": "", + "description": "(Required) A unique integer value identifying this user connect request." + } + ] + } + }, + "response": [ + { + "name": "Untitled Response", + "originalRequest": { + "method": "GET", + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": "Added as a part of security scheme: apikey", + "key": "sessionid", + "value": "" + } + ], + "url": { + "raw": "{{baseUrl}}/modules/corporate-event/api/v1/connect/accept/:id/", + "host": [ + "{{baseUrl}}" + ], + "path": [ + "modules", + "corporate-event", + "api", + "v1", + "connect", + "accept", + ":id", + "" + ], + "variable": [ + { + "key": "id" + } + ] + } + }, + "status": "OK", + "code": 200, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"id\": \"\",\n \"requestee\": \"\",\n \"status\": \"Accepted\",\n \"created\": \"\",\n \"requester\": \"\"\n}" + } + ] + }, + { + "name": "modules corporate event api v1 connect accept update", + "request": { + "auth": { + "type": "apikey", + "apikey": [ + { + "key": "key", + "value": "sessionid", + "type": "string" + }, + { + "key": "value", + "value": "{{apiKey}}", + "type": "string" + }, + { + "key": "in", + "value": "header", + "type": "string" + } + ] + }, + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/x-www-form-urlencoded" + }, + { + "key": "Accept", + "value": "application/json" + } + ], + "body": { + "mode": "urlencoded", + "urlencoded": [ + { + "key": "id", + "value": "", + "description": "(Required) " + }, + { + "key": "requestee", + "value": "", + "description": "(Required) " + }, + { + "key": "status", + "value": "Accepted", + "description": "* `Pending` - Pending\n* `Accepted` - Accepted\n* `Rejected` - Rejected" + }, + { + "key": "created", + "value": "" + }, + { + "key": "requester", + "value": "" + } + ] + }, + "url": { + "raw": "{{baseUrl}}/modules/corporate-event/api/v1/connect/accept/:id/", + "host": [ + "{{baseUrl}}" + ], + "path": [ + "modules", + "corporate-event", + "api", + "v1", + "connect", + "accept", + ":id", + "" + ], + "variable": [ + { + "key": "id", + "value": "", + "description": "(Required) A unique integer value identifying this user connect request." + } + ] + } + }, + "response": [ + { + "name": "Untitled Response", + "originalRequest": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/x-www-form-urlencoded" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": "Added as a part of security scheme: apikey", + "key": "sessionid", + "value": "" + } + ], + "body": { + "mode": "urlencoded", + "urlencoded": [ + { + "key": "id", + "value": "", + "description": "(Required) " + }, + { + "key": "requestee", + "value": "", + "description": "(Required) " + }, + { + "key": "status", + "value": "Accepted", + "description": "* `Pending` - Pending\n* `Accepted` - Accepted\n* `Rejected` - Rejected" + }, + { + "key": "created", + "value": "" + }, + { + "key": "requester", + "value": "" + } + ] + }, + "url": { + "raw": "{{baseUrl}}/modules/corporate-event/api/v1/connect/accept/:id/", + "host": [ + "{{baseUrl}}" + ], + "path": [ + "modules", + "corporate-event", + "api", + "v1", + "connect", + "accept", + ":id", + "" + ], + "variable": [ + { + "key": "id" + } + ] + } + }, + "status": "OK", + "code": 200, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"id\": \"\",\n \"requestee\": \"\",\n \"status\": \"Accepted\",\n \"created\": \"\",\n \"requester\": \"\"\n}" + } + ] + }, + { + "name": "modules corporate event api v1 connect accept partial update", + "request": { + "auth": { + "type": "apikey", + "apikey": [ + { + "key": "key", + "value": "sessionid", + "type": "string" + }, + { + "key": "value", + "value": "{{apiKey}}", + "type": "string" + }, + { + "key": "in", + "value": "header", + "type": "string" + } + ] + }, + "method": "PATCH", + "header": [ + { + "key": "Content-Type", + "value": "application/x-www-form-urlencoded" + }, + { + "key": "Accept", + "value": "application/json" + } + ], + "body": { + "mode": "urlencoded", + "urlencoded": [ + { + "key": "id", + "value": "" + }, + { + "key": "status", + "value": "Rejected", + "description": "* `Pending` - Pending\n* `Accepted` - Accepted\n* `Rejected` - Rejected" + }, + { + "key": "created", + "value": "" + }, + { + "key": "requester", + "value": "" + }, + { + "key": "requestee", + "value": "" + } + ] + }, + "url": { + "raw": "{{baseUrl}}/modules/corporate-event/api/v1/connect/accept/:id/", + "host": [ + "{{baseUrl}}" + ], + "path": [ + "modules", + "corporate-event", + "api", + "v1", + "connect", + "accept", + ":id", + "" + ], + "variable": [ + { + "key": "id", + "value": "", + "description": "(Required) A unique integer value identifying this user connect request." + } + ] + } + }, + "response": [ + { + "name": "Untitled Response", + "originalRequest": { + "method": "PATCH", + "header": [ + { + "key": "Content-Type", + "value": "application/x-www-form-urlencoded" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": "Added as a part of security scheme: apikey", + "key": "sessionid", + "value": "" + } + ], + "body": { + "mode": "urlencoded", + "urlencoded": [ + { + "key": "id", + "value": "" + }, + { + "key": "status", + "value": "Rejected", + "description": "* `Pending` - Pending\n* `Accepted` - Accepted\n* `Rejected` - Rejected" + }, + { + "key": "created", + "value": "" + }, + { + "key": "requester", + "value": "" + }, + { + "key": "requestee", + "value": "" + } + ] + }, + "url": { + "raw": "{{baseUrl}}/modules/corporate-event/api/v1/connect/accept/:id/", + "host": [ + "{{baseUrl}}" + ], + "path": [ + "modules", + "corporate-event", + "api", + "v1", + "connect", + "accept", + ":id", + "" + ], + "variable": [ + { + "key": "id" + } + ] + } + }, + "status": "OK", + "code": 200, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"id\": \"\",\n \"requestee\": \"\",\n \"status\": \"Accepted\",\n \"created\": \"\",\n \"requester\": \"\"\n}" + } + ] + }, + { + "name": "modules corporate event api v1 connect accept destroy", + "request": { + "auth": { + "type": "apikey", + "apikey": [ + { + "key": "key", + "value": "sessionid", + "type": "string" + }, + { + "key": "value", + "value": "{{apiKey}}", + "type": "string" + }, + { + "key": "in", + "value": "header", + "type": "string" + } + ] + }, + "method": "DELETE", + "header": [], + "url": { + "raw": "{{baseUrl}}/modules/corporate-event/api/v1/connect/accept/:id/", + "host": [ + "{{baseUrl}}" + ], + "path": [ + "modules", + "corporate-event", + "api", + "v1", + "connect", + "accept", + ":id", + "" + ], + "variable": [ + { + "key": "id", + "value": "", + "description": "(Required) A unique integer value identifying this user connect request." + } + ] + } + }, + "response": [ + { + "name": "No response body", + "originalRequest": { + "method": "DELETE", + "header": [ + { + "description": "Added as a part of security scheme: apikey", + "key": "sessionid", + "value": "" + } + ], + "url": { + "raw": "{{baseUrl}}/modules/corporate-event/api/v1/connect/accept/:id/", + "host": [ + "{{baseUrl}}" + ], + "path": [ + "modules", + "corporate-event", + "api", + "v1", + "connect", + "accept", + ":id", + "" + ], + "variable": [ + { + "key": "id" + } + ] + } + }, + "status": "No Content", + "code": 204, + "_postman_previewlanguage": "text", + "header": [], + "cookie": [], + "body": "" + } + ] + } + ] + }, + { + "name": "modules corporate event api v1 connect accept list", + "request": { + "auth": { + "type": "apikey", + "apikey": [ + { + "key": "key", + "value": "sessionid", + "type": "string" + }, + { + "key": "value", + "value": "{{apiKey}}", + "type": "string" + }, + { + "key": "in", + "value": "header", + "type": "string" + } + ] + }, + "method": "GET", + "header": [ + { + "key": "Accept", + "value": "application/json" + } + ], + "url": { + "raw": "{{baseUrl}}/modules/corporate-event/api/v1/connect/accept/", + "host": [ + "{{baseUrl}}" + ], + "path": [ + "modules", + "corporate-event", + "api", + "v1", + "connect", + "accept", + "" + ] + } + }, + "response": [ + { + "name": "Untitled Response", + "originalRequest": { + "method": "GET", + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": "Added as a part of security scheme: apikey", + "key": "sessionid", + "value": "" + } + ], + "url": { + "raw": "{{baseUrl}}/modules/corporate-event/api/v1/connect/accept/", + "host": [ + "{{baseUrl}}" + ], + "path": [ + "modules", + "corporate-event", + "api", + "v1", + "connect", + "accept", + "" + ] + } + }, + "status": "OK", + "code": 200, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "[\n {\n \"id\": \"\",\n \"requestee\": \"\",\n \"status\": \"Rejected\",\n \"created\": \"\",\n \"requester\": \"\"\n },\n {\n \"id\": \"\",\n \"requestee\": \"\",\n \"status\": \"Rejected\",\n \"created\": \"\",\n \"requester\": \"\"\n }\n]" + } + ] + }, + { + "name": "modules corporate event api v1 connect accept create", + "request": { + "auth": { + "type": "apikey", + "apikey": [ + { + "key": "key", + "value": "sessionid", + "type": "string" + }, + { + "key": "value", + "value": "{{apiKey}}", + "type": "string" + }, + { + "key": "in", + "value": "header", + "type": "string" + } + ] + }, + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/x-www-form-urlencoded" + }, + { + "key": "Accept", + "value": "application/json" + } + ], + "body": { + "mode": "urlencoded", + "urlencoded": [ + { + "key": "id", + "value": "", + "description": "(Required) " + }, + { + "key": "requestee", + "value": "", + "description": "(Required) " + }, + { + "key": "status", + "value": "Accepted", + "description": "* `Pending` - Pending\n* `Accepted` - Accepted\n* `Rejected` - Rejected" + }, + { + "key": "created", + "value": "" + }, + { + "key": "requester", + "value": "" + } + ] + }, + "url": { + "raw": "{{baseUrl}}/modules/corporate-event/api/v1/connect/accept/", + "host": [ + "{{baseUrl}}" + ], + "path": [ + "modules", + "corporate-event", + "api", + "v1", + "connect", + "accept", + "" + ] + } + }, + "response": [ + { + "name": "Untitled Response", + "originalRequest": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/x-www-form-urlencoded" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": "Added as a part of security scheme: apikey", + "key": "sessionid", + "value": "" + } + ], + "body": { + "mode": "urlencoded", + "urlencoded": [ + { + "key": "id", + "value": "", + "description": "(Required) " + }, + { + "key": "requestee", + "value": "", + "description": "(Required) " + }, + { + "key": "status", + "value": "Accepted", + "description": "* `Pending` - Pending\n* `Accepted` - Accepted\n* `Rejected` - Rejected" + }, + { + "key": "created", + "value": "" + }, + { + "key": "requester", + "value": "" + } + ] + }, + "url": { + "raw": "{{baseUrl}}/modules/corporate-event/api/v1/connect/accept/", + "host": [ + "{{baseUrl}}" + ], + "path": [ + "modules", + "corporate-event", + "api", + "v1", + "connect", + "accept", + "" + ] + } + }, + "status": "Created", + "code": 201, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"id\": \"\",\n \"requestee\": \"\",\n \"status\": \"Accepted\",\n \"created\": \"\",\n \"requester\": \"\"\n}" + } + ] + } + ] + }, + { + "name": "send_request", + "item": [ + { + "name": "modules corporate event api v1 connect send request create", + "request": { + "auth": { + "type": "apikey", + "apikey": [ + { + "key": "key", + "value": "sessionid", + "type": "string" + }, + { + "key": "value", + "value": "{{apiKey}}", + "type": "string" + }, + { + "key": "in", + "value": "header", + "type": "string" + } + ] + }, + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/x-www-form-urlencoded" + }, + { + "key": "Accept", + "value": "application/json" + } + ], + "body": { + "mode": "urlencoded", + "urlencoded": [ + { + "key": "company", + "value": "", + "description": "(Required) " + }, + { + "key": "description", + "value": "", + "description": "(Required) " + }, + { + "key": "designation", + "value": "", + "description": "(Required) " + }, + { + "key": "id", + "value": "", + "description": "(Required) " + }, + { + "key": "id", + "value": "", + "description": "(Required) " + }, + { + "key": "email", + "value": "", + "description": "(Required) " + }, + { + "key": "name", + "value": "", + "description": "(Required) " + }, + { + "key": "website", + "value": "", + "description": "(Required) " + }, + { + "key": "image", + "value": "" + }, + { + "key": "show_profile", + "value": "" + } + ] + }, + "url": { + "raw": "{{baseUrl}}/modules/corporate-event/api/v1/connect/send_request/", + "host": [ + "{{baseUrl}}" + ], + "path": [ + "modules", + "corporate-event", + "api", + "v1", + "connect", + "send_request", + "" + ] + } + }, + "response": [ + { + "name": "Untitled Response", + "originalRequest": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/x-www-form-urlencoded" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": "Added as a part of security scheme: apikey", + "key": "sessionid", + "value": "" + } + ], + "body": { + "mode": "urlencoded", + "urlencoded": [ + { + "key": "company", + "value": "", + "description": "(Required) " + }, + { + "key": "description", + "value": "", + "description": "(Required) " + }, + { + "key": "designation", + "value": "", + "description": "(Required) " + }, + { + "key": "id", + "value": "", + "description": "(Required) " + }, + { + "key": "id", + "value": "", + "description": "(Required) " + }, + { + "key": "email", + "value": "", + "description": "(Required) " + }, + { + "key": "name", + "value": "", + "description": "(Required) " + }, + { + "key": "website", + "value": "", + "description": "(Required) " + }, + { + "key": "image", + "value": "" + }, + { + "key": "show_profile", + "value": "" + } + ] + }, + "url": { + "raw": "{{baseUrl}}/modules/corporate-event/api/v1/connect/send_request/", + "host": [ + "{{baseUrl}}" + ], + "path": [ + "modules", + "corporate-event", + "api", + "v1", + "connect", + "send_request", + "" + ] + } + }, + "status": "OK", + "code": 200, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"company\": \"\",\n \"description\": \"\",\n \"designation\": \"\",\n \"id\": \"\",\n \"user\": {\n \"id\": \"\",\n \"email\": \"\",\n \"name\": \"\"\n },\n \"website\": \"\",\n \"image\": \"\",\n \"show_profile\": \"\"\n}" + } + ] + } + ] + }, + { + "name": "modules corporate event api v1 connect list", + "request": { + "auth": { + "type": "apikey", + "apikey": [ + { + "key": "key", + "value": "sessionid", + "type": "string" + }, + { + "key": "value", + "value": "{{apiKey}}", + "type": "string" + }, + { + "key": "in", + "value": "header", + "type": "string" + } + ] + }, + "method": "GET", + "header": [ + { + "key": "Accept", + "value": "application/json" + } + ], + "url": { + "raw": "{{baseUrl}}/modules/corporate-event/api/v1/connect/", + "host": [ + "{{baseUrl}}" + ], + "path": [ + "modules", + "corporate-event", + "api", + "v1", + "connect", + "" + ] + } + }, + "response": [ + { + "name": "Untitled Response", + "originalRequest": { + "method": "GET", + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": "Added as a part of security scheme: apikey", + "key": "sessionid", + "value": "" + } + ], + "url": { + "raw": "{{baseUrl}}/modules/corporate-event/api/v1/connect/", + "host": [ + "{{baseUrl}}" + ], + "path": [ + "modules", + "corporate-event", + "api", + "v1", + "connect", + "" + ] + } + }, + "status": "OK", + "code": 200, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "[\n {\n \"company\": \"\",\n \"description\": \"\",\n \"designation\": \"\",\n \"id\": \"\",\n \"user\": {\n \"id\": \"\",\n \"email\": \"\",\n \"name\": \"\"\n },\n \"website\": \"\",\n \"image\": \"\",\n \"show_profile\": \"\"\n },\n {\n \"company\": \"\",\n \"description\": \"\",\n \"designation\": \"\",\n \"id\": \"\",\n \"user\": {\n \"id\": \"\",\n \"email\": \"\",\n \"name\": \"\"\n },\n \"website\": \"\",\n \"image\": \"\",\n \"show_profile\": \"\"\n }\n]" + } + ] + }, + { + "name": "modules corporate event api v1 connect create", + "request": { + "auth": { + "type": "apikey", + "apikey": [ + { + "key": "key", + "value": "sessionid", + "type": "string" + }, + { + "key": "value", + "value": "{{apiKey}}", + "type": "string" + }, + { + "key": "in", + "value": "header", + "type": "string" + } + ] + }, + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/x-www-form-urlencoded" + }, + { + "key": "Accept", + "value": "application/json" + } + ], + "body": { + "mode": "urlencoded", + "urlencoded": [ + { + "key": "company", + "value": "", + "description": "(Required) " + }, + { + "key": "description", + "value": "", + "description": "(Required) " + }, + { + "key": "designation", + "value": "", + "description": "(Required) " + }, + { + "key": "id", + "value": "", + "description": "(Required) " + }, + { + "key": "id", + "value": "", + "description": "(Required) " + }, + { + "key": "email", + "value": "", + "description": "(Required) " + }, + { + "key": "name", + "value": "", + "description": "(Required) " + }, + { + "key": "website", + "value": "", + "description": "(Required) " + }, + { + "key": "image", + "value": "" + }, + { + "key": "show_profile", + "value": "" + } + ] + }, + "url": { + "raw": "{{baseUrl}}/modules/corporate-event/api/v1/connect/", + "host": [ + "{{baseUrl}}" + ], + "path": [ + "modules", + "corporate-event", + "api", + "v1", + "connect", + "" + ] + } + }, + "response": [ + { + "name": "Untitled Response", + "originalRequest": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/x-www-form-urlencoded" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": "Added as a part of security scheme: apikey", + "key": "sessionid", + "value": "" + } + ], + "body": { + "mode": "urlencoded", + "urlencoded": [ + { + "key": "company", + "value": "", + "description": "(Required) " + }, + { + "key": "description", + "value": "", + "description": "(Required) " + }, + { + "key": "designation", + "value": "", + "description": "(Required) " + }, + { + "key": "id", + "value": "", + "description": "(Required) " + }, + { + "key": "id", + "value": "", + "description": "(Required) " + }, + { + "key": "email", + "value": "", + "description": "(Required) " + }, + { + "key": "name", + "value": "", + "description": "(Required) " + }, + { + "key": "website", + "value": "", + "description": "(Required) " + }, + { + "key": "image", + "value": "" + }, + { + "key": "show_profile", + "value": "" + } + ] + }, + "url": { + "raw": "{{baseUrl}}/modules/corporate-event/api/v1/connect/", + "host": [ + "{{baseUrl}}" + ], + "path": [ + "modules", + "corporate-event", + "api", + "v1", + "connect", + "" + ] + } + }, + "status": "Created", + "code": 201, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"company\": \"\",\n \"description\": \"\",\n \"designation\": \"\",\n \"id\": \"\",\n \"user\": {\n \"id\": \"\",\n \"email\": \"\",\n \"name\": \"\"\n },\n \"website\": \"\",\n \"image\": \"\",\n \"show_profile\": \"\"\n}" + } + ] + } + ] + }, + { + "name": "home", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": "modules corporate event api v1 home retrieve 2", + "request": { + "auth": { + "type": "apikey", + "apikey": [ + { + "key": "key", + "value": "sessionid", + "type": "string" + }, + { + "key": "value", + "value": "{{apiKey}}", + "type": "string" + }, + { + "key": "in", + "value": "header", + "type": "string" + } + ] + }, + "method": "GET", + "header": [], + "url": { + "raw": "{{baseUrl}}/modules/corporate-event/api/v1/home/:id/", + "host": [ + "{{baseUrl}}" + ], + "path": [ + "modules", + "corporate-event", + "api", + "v1", + "home", + ":id", + "" + ], + "variable": [ + { + "key": "id", + "value": "", + "description": "(Required) A unique integer value identifying this user session." + } + ] + } + }, + "response": [ + { + "name": "No response body", + "originalRequest": { + "method": "GET", + "header": [ + { + "description": "Added as a part of security scheme: apikey", + "key": "sessionid", + "value": "" + } + ], + "url": { + "raw": "{{baseUrl}}/modules/corporate-event/api/v1/home/:id/", + "host": [ + "{{baseUrl}}" + ], + "path": [ + "modules", + "corporate-event", + "api", + "v1", + "home", + ":id", + "" + ], + "variable": [ + { + "key": "id" + } + ] + } + }, + "status": "OK", + "code": 200, + "_postman_previewlanguage": "text", + "header": [], + "cookie": [], + "body": "" + } + ] + } + ] + }, + { + "name": "modules corporate event api v1 home retrieve", + "request": { + "auth": { + "type": "apikey", + "apikey": [ + { + "key": "key", + "value": "sessionid", + "type": "string" + }, + { + "key": "value", + "value": "{{apiKey}}", + "type": "string" + }, + { + "key": "in", + "value": "header", + "type": "string" + } + ] + }, + "method": "GET", + "header": [], + "url": { + "raw": "{{baseUrl}}/modules/corporate-event/api/v1/home/", + "host": [ + "{{baseUrl}}" + ], + "path": [ + "modules", + "corporate-event", + "api", + "v1", + "home", + "" + ] + } + }, + "response": [ + { + "name": "No response body", + "originalRequest": { + "method": "GET", + "header": [ + { + "description": "Added as a part of security scheme: apikey", + "key": "sessionid", + "value": "" + } + ], + "url": { + "raw": "{{baseUrl}}/modules/corporate-event/api/v1/home/", + "host": [ + "{{baseUrl}}" + ], + "path": [ + "modules", + "corporate-event", + "api", + "v1", + "home", + "" + ] + } + }, + "status": "OK", + "code": 200, + "_postman_previewlanguage": "text", + "header": [], + "cookie": [], + "body": "" + } + ] + } + ] + }, + { + "name": "meta_link", + "item": [ + { + "name": "modules corporate event api v1 meta link retrieve", + "request": { + "auth": { + "type": "apikey", + "apikey": [ + { + "key": "key", + "value": "sessionid", + "type": "string" + }, + { + "key": "value", + "value": "{{apiKey}}", + "type": "string" + }, + { + "key": "in", + "value": "header", + "type": "string" + } + ] + }, + "method": "GET", + "header": [], + "url": { + "raw": "{{baseUrl}}/modules/corporate-event/api/v1/meta_link/", + "host": [ + "{{baseUrl}}" + ], + "path": [ + "modules", + "corporate-event", + "api", + "v1", + "meta_link", + "" + ] + } + }, + "response": [ + { + "name": "No response body", + "originalRequest": { + "method": "GET", + "header": [ + { + "description": "Added as a part of security scheme: apikey", + "key": "sessionid", + "value": "" + } + ], + "url": { + "raw": "{{baseUrl}}/modules/corporate-event/api/v1/meta_link/", + "host": [ + "{{baseUrl}}" + ], + "path": [ + "modules", + "corporate-event", + "api", + "v1", + "meta_link", + "" + ] + } + }, + "status": "OK", + "code": 200, + "_postman_previewlanguage": "text", + "header": [], + "cookie": [], + "body": "" + } + ] + } + ] + }, + { + "name": "offerings", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": "modules corporate event api v1 offerings retrieve", + "request": { + "auth": { + "type": "apikey", + "apikey": [ + { + "key": "key", + "value": "sessionid", + "type": "string" + }, + { + "key": "value", + "value": "{{apiKey}}", + "type": "string" + }, + { + "key": "in", + "value": "header", + "type": "string" + } + ] + }, + "method": "GET", + "header": [ + { + "key": "Accept", + "value": "application/json" + } + ], + "url": { + "raw": "{{baseUrl}}/modules/corporate-event/api/v1/offerings/:id/", + "host": [ + "{{baseUrl}}" + ], + "path": [ + "modules", + "corporate-event", + "api", + "v1", + "offerings", + ":id", + "" + ], + "variable": [ + { + "key": "id", + "value": "", + "description": "(Required) A unique integer value identifying this offerigs page." + } + ] + } + }, + "response": [ + { + "name": "Untitled Response", + "originalRequest": { + "method": "GET", + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": "Added as a part of security scheme: apikey", + "key": "sessionid", + "value": "" + } + ], + "url": { + "raw": "{{baseUrl}}/modules/corporate-event/api/v1/offerings/:id/", + "host": [ + "{{baseUrl}}" + ], + "path": [ + "modules", + "corporate-event", + "api", + "v1", + "offerings", + ":id", + "" + ], + "variable": [ + { + "key": "id" + } + ] + } + }, + "status": "OK", + "code": 200, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"created_at\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"slug\": \"\",\n \"title\": \"\",\n \"updated_at\": \"\",\n \"image\": \"\",\n \"sort\": \"\",\n \"is_active\": \"\"\n}" + } + ] + }, + { + "name": "modules corporate event api v1 offerings update", + "request": { + "auth": { + "type": "apikey", + "apikey": [ + { + "key": "key", + "value": "sessionid", + "type": "string" + }, + { + "key": "value", + "value": "{{apiKey}}", + "type": "string" + }, + { + "key": "in", + "value": "header", + "type": "string" + } + ] + }, + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/x-www-form-urlencoded" + }, + { + "key": "Accept", + "value": "application/json" + } + ], + "body": { + "mode": "urlencoded", + "urlencoded": [ + { + "key": "created_at", + "value": "", + "description": "(Required) " + }, + { + "key": "description", + "value": "", + "description": "(Required) " + }, + { + "key": "id", + "value": "", + "description": "(Required) " + }, + { + "key": "slug", + "value": "", + "description": "(Required) " + }, + { + "key": "title", + "value": "", + "description": "(Required) " + }, + { + "key": "updated_at", + "value": "", + "description": "(Required) " + }, + { + "key": "image", + "value": "" + }, + { + "key": "sort", + "value": "" + }, + { + "key": "is_active", + "value": "" + } + ] + }, + "url": { + "raw": "{{baseUrl}}/modules/corporate-event/api/v1/offerings/:id/", + "host": [ + "{{baseUrl}}" + ], + "path": [ + "modules", + "corporate-event", + "api", + "v1", + "offerings", + ":id", + "" + ], + "variable": [ + { + "key": "id", + "value": "", + "description": "(Required) A unique integer value identifying this offerigs page." + } + ] + } + }, + "response": [ + { + "name": "Untitled Response", + "originalRequest": { + "method": "PUT", + "header": [ + { + "key": "Content-Type", + "value": "application/x-www-form-urlencoded" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": "Added as a part of security scheme: apikey", + "key": "sessionid", + "value": "" + } + ], + "body": { + "mode": "urlencoded", + "urlencoded": [ + { + "key": "created_at", + "value": "", + "description": "(Required) " + }, + { + "key": "description", + "value": "", + "description": "(Required) " + }, + { + "key": "id", + "value": "", + "description": "(Required) " + }, + { + "key": "slug", + "value": "", + "description": "(Required) " + }, + { + "key": "title", + "value": "", + "description": "(Required) " + }, + { + "key": "updated_at", + "value": "", + "description": "(Required) " + }, + { + "key": "image", + "value": "" + }, + { + "key": "sort", + "value": "" + }, + { + "key": "is_active", + "value": "" + } + ] + }, + "url": { + "raw": "{{baseUrl}}/modules/corporate-event/api/v1/offerings/:id/", + "host": [ + "{{baseUrl}}" + ], + "path": [ + "modules", + "corporate-event", + "api", + "v1", + "offerings", + ":id", + "" + ], + "variable": [ + { + "key": "id" + } + ] + } + }, + "status": "OK", + "code": 200, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"created_at\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"slug\": \"\",\n \"title\": \"\",\n \"updated_at\": \"\",\n \"image\": \"\",\n \"sort\": \"\",\n \"is_active\": \"\"\n}" + } + ] + }, + { + "name": "modules corporate event api v1 offerings partial update", + "request": { + "auth": { + "type": "apikey", + "apikey": [ + { + "key": "key", + "value": "sessionid", + "type": "string" + }, + { + "key": "value", + "value": "{{apiKey}}", + "type": "string" + }, + { + "key": "in", + "value": "header", + "type": "string" + } + ] + }, + "method": "PATCH", + "header": [ + { + "key": "Content-Type", + "value": "application/x-www-form-urlencoded" + }, + { + "key": "Accept", + "value": "application/json" + } + ], + "body": { + "mode": "urlencoded", + "urlencoded": [ + { + "key": "id", + "value": "" + }, + { + "key": "title", + "value": "" + }, + { + "key": "slug", + "value": "" + }, + { + "key": "description", + "value": "" + }, + { + "key": "image", + "value": "" + }, + { + "key": "sort", + "value": "" + }, + { + "key": "is_active", + "value": "" + }, + { + "key": "created_at", + "value": "" + }, + { + "key": "updated_at", + "value": "" + } + ] + }, + "url": { + "raw": "{{baseUrl}}/modules/corporate-event/api/v1/offerings/:id/", + "host": [ + "{{baseUrl}}" + ], + "path": [ + "modules", + "corporate-event", + "api", + "v1", + "offerings", + ":id", + "" + ], + "variable": [ + { + "key": "id", + "value": "", + "description": "(Required) A unique integer value identifying this offerigs page." + } + ] + } + }, + "response": [ + { + "name": "Untitled Response", + "originalRequest": { + "method": "PATCH", + "header": [ + { + "key": "Content-Type", + "value": "application/x-www-form-urlencoded" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": "Added as a part of security scheme: apikey", + "key": "sessionid", + "value": "" + } + ], + "body": { + "mode": "urlencoded", + "urlencoded": [ + { + "key": "id", + "value": "" + }, + { + "key": "title", + "value": "" + }, + { + "key": "slug", + "value": "" + }, + { + "key": "description", + "value": "" + }, + { + "key": "image", + "value": "" + }, + { + "key": "sort", + "value": "" + }, + { + "key": "is_active", + "value": "" + }, + { + "key": "created_at", + "value": "" + }, + { + "key": "updated_at", + "value": "" + } + ] + }, + "url": { + "raw": "{{baseUrl}}/modules/corporate-event/api/v1/offerings/:id/", + "host": [ + "{{baseUrl}}" + ], + "path": [ + "modules", + "corporate-event", + "api", + "v1", + "offerings", + ":id", + "" + ], + "variable": [ + { + "key": "id" + } + ] + } + }, + "status": "OK", + "code": 200, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"created_at\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"slug\": \"\",\n \"title\": \"\",\n \"updated_at\": \"\",\n \"image\": \"\",\n \"sort\": \"\",\n \"is_active\": \"\"\n}" + } + ] + }, + { + "name": "modules corporate event api v1 offerings destroy", + "request": { + "auth": { + "type": "apikey", + "apikey": [ + { + "key": "key", + "value": "sessionid", + "type": "string" + }, + { + "key": "value", + "value": "{{apiKey}}", + "type": "string" + }, + { + "key": "in", + "value": "header", + "type": "string" + } + ] + }, + "method": "DELETE", + "header": [], + "url": { + "raw": "{{baseUrl}}/modules/corporate-event/api/v1/offerings/:id/", + "host": [ + "{{baseUrl}}" + ], + "path": [ + "modules", + "corporate-event", + "api", + "v1", + "offerings", + ":id", + "" + ], + "variable": [ + { + "key": "id", + "value": "", + "description": "(Required) A unique integer value identifying this offerigs page." + } + ] + } + }, + "response": [ + { + "name": "No response body", + "originalRequest": { + "method": "DELETE", + "header": [ + { + "description": "Added as a part of security scheme: apikey", + "key": "sessionid", + "value": "" + } + ], + "url": { + "raw": "{{baseUrl}}/modules/corporate-event/api/v1/offerings/:id/", + "host": [ + "{{baseUrl}}" + ], + "path": [ + "modules", + "corporate-event", + "api", + "v1", + "offerings", + ":id", + "" + ], + "variable": [ + { + "key": "id" + } + ] + } + }, + "status": "No Content", + "code": 204, + "_postman_previewlanguage": "text", + "header": [], + "cookie": [], + "body": "" + } + ] + } + ] + }, + { + "name": "modules corporate event api v1 offerings list", + "request": { + "auth": { + "type": "apikey", + "apikey": [ + { + "key": "key", + "value": "sessionid", + "type": "string" + }, + { + "key": "value", + "value": "{{apiKey}}", + "type": "string" + }, + { + "key": "in", + "value": "header", + "type": "string" + } + ] + }, + "method": "GET", + "header": [ + { + "key": "Accept", + "value": "application/json" + } + ], + "url": { + "raw": "{{baseUrl}}/modules/corporate-event/api/v1/offerings/", + "host": [ + "{{baseUrl}}" + ], + "path": [ + "modules", + "corporate-event", + "api", + "v1", + "offerings", + "" + ] + } + }, + "response": [ + { + "name": "Untitled Response", + "originalRequest": { + "method": "GET", + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": "Added as a part of security scheme: apikey", + "key": "sessionid", + "value": "" + } + ], + "url": { + "raw": "{{baseUrl}}/modules/corporate-event/api/v1/offerings/", + "host": [ + "{{baseUrl}}" + ], + "path": [ + "modules", + "corporate-event", + "api", + "v1", + "offerings", + "" + ] + } + }, + "status": "OK", + "code": 200, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "[\n {\n \"created_at\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"slug\": \"\",\n \"title\": \"\",\n \"updated_at\": \"\",\n \"image\": \"\",\n \"sort\": \"\",\n \"is_active\": \"\"\n },\n {\n \"created_at\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"slug\": \"\",\n \"title\": \"\",\n \"updated_at\": \"\",\n \"image\": \"\",\n \"sort\": \"\",\n \"is_active\": \"\"\n }\n]" + } + ] + }, + { + "name": "modules corporate event api v1 offerings create", + "request": { + "auth": { + "type": "apikey", + "apikey": [ + { + "key": "key", + "value": "sessionid", + "type": "string" + }, + { + "key": "value", + "value": "{{apiKey}}", + "type": "string" + }, + { + "key": "in", + "value": "header", + "type": "string" + } + ] + }, + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/x-www-form-urlencoded" + }, + { + "key": "Accept", + "value": "application/json" + } + ], + "body": { + "mode": "urlencoded", + "urlencoded": [ + { + "key": "created_at", + "value": "", + "description": "(Required) " + }, + { + "key": "description", + "value": "", + "description": "(Required) " + }, + { + "key": "id", + "value": "", + "description": "(Required) " + }, + { + "key": "slug", + "value": "", + "description": "(Required) " + }, + { + "key": "title", + "value": "", + "description": "(Required) " + }, + { + "key": "updated_at", + "value": "", + "description": "(Required) " + }, + { + "key": "image", + "value": "" + }, + { + "key": "sort", + "value": "" + }, + { + "key": "is_active", + "value": "" + } + ] + }, + "url": { + "raw": "{{baseUrl}}/modules/corporate-event/api/v1/offerings/", + "host": [ + "{{baseUrl}}" + ], + "path": [ + "modules", + "corporate-event", + "api", + "v1", + "offerings", + "" + ] + } + }, + "response": [ + { + "name": "Untitled Response", + "originalRequest": { + "method": "POST", + "header": [ + { + "key": "Content-Type", + "value": "application/x-www-form-urlencoded" + }, + { + "key": "Accept", + "value": "application/json" + }, + { + "description": "Added as a part of security scheme: apikey", + "key": "sessionid", + "value": "" + } + ], + "body": { + "mode": "urlencoded", + "urlencoded": [ + { + "key": "created_at", + "value": "", + "description": "(Required) " + }, + { + "key": "description", + "value": "", + "description": "(Required) " + }, + { + "key": "id", + "value": "", + "description": "(Required) " + }, + { + "key": "slug", + "value": "", + "description": "(Required) " + }, + { + "key": "title", + "value": "", + "description": "(Required) " + }, + { + "key": "updated_at", + "value": "", + "description": "(Required) " + }, + { + "key": "image", + "value": "" + }, + { + "key": "sort", + "value": "" + }, + { + "key": "is_active", + "value": "" + } + ] + }, + "url": { + "raw": "{{baseUrl}}/modules/corporate-event/api/v1/offerings/", + "host": [ + "{{baseUrl}}" + ], + "path": [ + "modules", + "corporate-event", + "api", + "v1", + "offerings", + "" + ] + } + }, + "status": "Created", + "code": 201, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"created_at\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"slug\": \"\",\n \"title\": \"\",\n \"updated_at\": \"\",\n \"image\": \"\",\n \"sort\": \"\",\n \"is_active\": \"\"\n}" + } + ] + } + ] + }, + { + "name": "session", + "item": [ + { + "name": "activity", + "item": [ + { + "name": "{id}", + "item": [ + { + "name": "modules corporate event api v1 session activity retrieve", + "request": { + "auth": { + "type": "apikey", + "apikey": [ + { + "key": "key", + "value": "sessionid", + "type": "string" + }, + { + "key": "value", + "value": "{{apiKey}}", + "type": "string" + }, + { + "key": "in", + "value": "header", + "type": "string" + } + ] + }, + "method": "GET", + "header": [ + { + "key": "Accept", + "value": "application/json" + } + ], + "url": { + "raw": "{{baseUrl}}/modules/corporate-event/api/v1/session/activity/:id/", + "host": [ + "{{baseUrl}}" + ], + "path": [ + "modules", + "corporate-event", + "api", + "v1", + "session", + "activity", + ":id", + "" + ], + "variable": [ + { + "key": "id", + "value": "", + "description": "(Required) A unique integer value identifying this activities." + } + ] + } + }, + "response": [ + { + "name": "Untitled Response", + "originalRequest": { + "method": "GET", + "header": [ + { + "key": "Accept", + "value": "application/json" + }, + { + "description": "Added as a part of security scheme: apikey", + "key": "sessionid", + "value": "" + } + ], + "url": { + "raw": "{{baseUrl}}/modules/corporate-event/api/v1/session/activity/:id/", + "host": [ + "{{baseUrl}}" + ], + "path": [ + "modules", + "corporate-event", + "api", + "v1", + "session", + "activity", + ":id", + "" + ], + "variable": [ + { + "key": "id" + } + ] + } + }, + "status": "OK", + "code": 200, + "_postman_previewlanguage": "json", + "header": [ + { + "key": "Content-Type", + "value": "application/json" + } + ], + "cookie": [], + "body": "{\n \"attachments\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"title\": \"\",\n \"date\": \"\",\n \"start_time\": \"