Skip to main content
PUT
/
v1
/
meetings
/
{meetingId}
Reschedule a Meeting
curl --request PUT \
  --url https://external.sakari.io/v1/meetings/{meetingId} \
  --header 'Content-Type: application/json' \
  --data '
{
  "start": "2023-11-07T05:31:56Z",
  "duration": 123,
  "attendees": [
    {
      "firstName": "<string>",
      "lastName": "<string>",
      "email": "<string>",
      "mobile": {
        "country": "<string>",
        "number": "123-456-7890",
        "verified": "2023-11-07T05:31:56Z",
        "valid": true,
        "lineType": "mobile"
      }
    }
  ],
  "notes": "<string>"
}
'
{
  "success": true,
  "data": {
    "id": "<string>",
    "name": "<string>",
    "start": "2023-11-07T05:31:56Z",
    "end": "2023-11-07T05:31:56Z",
    "description": "<string>",
    "notes": "<string>",
    "status": "upcoming",
    "hosts": [
      {
        "id": "<string>",
        "email": "[email protected]",
        "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>"
  }
}

Body

application/json
start
string<date-time>
required
duration
number
required
attendees
object[]
required
notes
string

Response

successful operation

success
boolean
required
data
object
required