get-event-details

Use this API to get details of a specific event using event_id

Use this API to get details of a specific event using event_id

POST https://api.memzo.ai/v1.1/get-event-details

Headers

Name
Type
Description

Authorization *

YOUR_SECRET_KEY

x-api-key*

String

YOUR_API_KEY

Request Body

Name
Type
Description

event_id*

String

4296

{
    "data": [
        {
            "event_id": "37",
            "event_name": "API-Test-Event692",
            "event_title": "API & Key",
            "event_category": "Wedding",
            "event_image_url": "https://mmzdata-dev.s3.ap-south-1.amazonaws.com/user_data/event_images/37_1735611325_newsletter_EnhanceYourEventPhotoSharingExperience_131124_1080pxede.png",
            "is_pre_register_mode": "0",
            "datetime_created": "2024-12-30 18:19:43",
            "event_link": "https://event.memzo.ai/m/API-Test-Event692/37",
            "photos_count": "10"
        }
    ],
    "error": false,
    "message": "Success"
}
Sample Request
<?php

$curl = curl_init();

curl_setopt_array($curl, array(
  CURLOPT_URL => 'https://api.memzo.ai/v1/get-event-details',
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => '',
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 0,
  CURLOPT_FOLLOWLOCATION => true,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => 'POST',
  CURLOPT_POSTFIELDS => array('event_id' => '4296'),
  CURLOPT_HTTPHEADER => array(
    'Authorization: YOUR_SECRET_KEY',
    'x-api-key: YOUR_API_KEY'
  ),
));

$response = curl_exec($curl);

curl_close($curl);
echo $response;

For more detailed information, please refer to the full Postman documentation here.

Last updated