Getting started
From wholesale signup to your first successful create call.
1. Wholesale onboarding
New vendors: Start wholesale on 2meet.ir. Existing partners: portal login.
2. Copy credentials
Partner portal → Credentials → note slug, LMS Server URL and Integration Secret.
3. Pick integration surface
| Surface | Best for |
|---|---|
| LMS wire API | Moodle, Canvas, virtual-classroom LMS plugins |
| JSON API | Custom backends, automation, mobile apps |
4. Base URLs
Wire: https://{slug}.2meet.ir/lms/v1/api/{action}
JSON: https://{slug}.2meet.ir/lms/v1/meetings
Join: https://meet.2meet.ir/join/{ticket}
5. Smoke test
ACTION=create
QUERY="meetingID=smoke-1&name=Smoke+Test&moderatorPW=mp&attendeePW=ap"
CHECKSUM=$(echo -n "${ACTION}${QUERY}${SECRET}" | sha256sum | awk '{print $1}')
curl -s "https://${SLUG}.2meet.ir/lms/v1/api/${ACTION}?${QUERY}&checksum=${CHECKSUM}"
Expect XML with SUCCESS. See Moodle guide for full E2E.