The MeetingPackage Distribution API enables partners to search availability, create and manage bookings, issue RFPs, and receive real-time updates from MeetingPackage.
MeetingPackage Distribution API (1.0.0)
- Mock serverhttps://developers.meetingpackage.com/_mock/openapi/distro-openapi/v2/bookings/{booking_id}
- Productionhttps://api.meetingpackage.co/v2/bookings/{booking_id}
- Sandboxhttps://sandbox.meetingpackage.co/v2/bookings/{booking_id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://developers.meetingpackage.com/_mock/openapi/distro-openapi/v2/bookings/1234 \
-H 'X-API-KEY: YOUR_API_KEY_HERE'Booking details
A positive integer representing how much to charge in the smallest currency unit (e.g., 100 cents to charge $1.00 or 100 to charge ¥100, a zero-decimal currency).
A positive integer representing how much to charge in the smallest currency unit (e.g., 100 cents to charge $1.00 or 100 to charge ¥100, a zero-decimal currency).
For DDR packages, will be array of package items. For addons, will be array of addon items.
A positive integer representing how much to charge in the smallest currency unit (e.g. 100 cents to charge $1.00 or 100 to charge ¥100, a zero-decimal currency).
A positive integer representing how much to charge in the smallest currency unit (e.g. 100 cents to charge $1.00 or 100 to charge ¥100, a zero-decimal currency).
A positive integer representing how much to charge in the smallest currency unit (e.g. 100 cents to charge $1.00 or 100 to charge ¥100, a zero-decimal currency).
ISO 4217 currency code accepted by the venue (ref. https://en.wikipedia.org/wiki/ISO_4217)
{ "data": { "id": 1234, "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z", "contents": [ … ], "total_price_without_tax": 100, "total_price_with_tax": 100, "total_discount_without_tax": 100, "status": "string", "status_updated_at": "2019-08-24T14:15:22Z", "currency": "EUR", "customer_id": 0 } }
- Mock serverhttps://developers.meetingpackage.com/_mock/openapi/distro-openapi/v2/bookings
- Productionhttps://api.meetingpackage.co/v2/bookings
- Sandboxhttps://sandbox.meetingpackage.co/v2/bookings
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://developers.meetingpackage.com/_mock/openapi/distro-openapi/v2/bookings?email_id=customer%40example.com' \
-H 'X-API-KEY: YOUR_API_KEY_HERE'List of orders/bookings associated with the provided customer email.
List of orders/bookings associated with the given customer email.
Internal unique identifier for the order/booking.
Identifier linking this order/booking back to the parent RFP (group).
{ "orders": [ { … } ] }