Skip to main content
GET
/
v1
/
meetings
/
{meetingId}
Fetch a Meeting
curl --request GET \
  --url https://external.sakari.io/v1/meetings/{meetingId}
import requests

url = "https://external.sakari.io/v1/meetings/{meetingId}"

response = requests.get(url)

print(response.text)
const options = {method: 'GET'};

fetch('https://external.sakari.io/v1/meetings/{meetingId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://external.sakari.io/v1/meetings/{meetingId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://external.sakari.io/v1/meetings/{meetingId}"

req, _ := http.NewRequest("GET", url, nil)

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://external.sakari.io/v1/meetings/{meetingId}")
.asString();
require 'uri'
require 'net/http'

url = URI("https://external.sakari.io/v1/meetings/{meetingId}")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)

response = http.request(request)
puts response.read_body
{
  "success": true,
  "data": {
    "id": "<string>",
    "name": "<string>",
    "start": "2023-11-07T05:31:56Z",
    "end": "2023-11-07T05:31:56Z",
    "description": "<string>",
    "notes": "<string>",
    "hosts": [
      {
        "id": "<string>",
        "email": "chris@sakari.io",
        "firstName": "Chris",
        "lastName": "Bloggs",
        "mobile": {
          "country": "<string>",
          "number": "123-456-7890",
          "verified": "2023-11-07T05:31:56Z",
          "valid": true,
          "lineType": "mobile"
        }
      }
    ],
    "attendees": [
      "<unknown>"
    ],
    "rescheduleLink": "<string>",
    "cancelLink": "<string>"
  }
}
{
"success": true,
"error": {
"code": "CONT-010",
"description": "Contact has requested no further communication"
}
}
{
"success": true,
"error": {
"code": "CONT-010",
"description": "Contact has requested no further communication"
}
}

Path Parameters

meetingId
string
required

The ID of the meeting

Response

successful operation

success
boolean
required
data
object
required