Get a single meeting by ID.
This endpoint is in beta. We will aim to avoid breaking changes, but small updates may be made as we roll out to more users.
Required scopes: meeting:read, record_permission:read.
643 matches
49 actions
Attio
49 actions
CRM/Attio
Get a single meeting by ID.
This endpoint is in beta. We will aim to avoid breaking changes, but small updates may be made as we roll out to more users.
Required scopes: meeting:read, record_permission:read.
{
"type": "object",
"properties": {
"meeting_id": {
"type": "string",
"format": "uuid",
"description": "A UUID which identifies the meeting."
}
},
"required": [
"meeting_id"
],
"additionalProperties": false
}{
"type": "object",
"description": "Success",
"required": [
"data"
],
"properties": {
"data": {
"type": "object",
"required": [
"created_at",
"created_by_actor",
"description",
"end",
"id",
"is_all_day",
"linked_records",
"participants",
"start",
"title"
],
"properties": {
"created_at": {
"type": "string",
"description": "Timestamp representing when the meeting was created."
},
"created_by_actor": {
"type": "object",
"description": "The actor that created this meeting.",
"properties": {
"id": {
"type": "string",
"description": "An ID to identify the actor."
},
"type": {
"type": "string",
"description": "The type of actor. [Read more information on actor types here](/docs/actors).",
"enum": [
"api-token",
"workspace-member",
"system",
"app"
]
}
}
},
"description": {
"type": "string",
"description": "The description of the meeting."
},
"end": {
"type": "object"
},
"id": {
"type": "object",
"required": [
"meeting_id",
"workspace_id"
],
"properties": {
"meeting_id": {
"type": "string",
"format": "uuid",
"description": "The ID of the Attio meeting."
},
"workspace_id": {
"type": "string",
"format": "uuid",
"description": "The ID of the workspace the meeting belongs to."
}
}
},
"is_all_day": {
"type": "boolean",
"description": "Whether or not the meeting is an all day event. All day events may span multiple days."
},
"linked_records": {
"type": "array",
"description": "A list of records that are linked to the meeting. Participants with matching person records are automatically linked to the meeting but other records may also be linked explicitly.",
"items": {
"type": "object",
"required": [
"object_slug",
"object_id",
"record_id"
],
"properties": {
"object_id": {
"type": "string",
"format": "uuid",
"description": "The ID of the object the meeting linked record belongs to."
},
"object_slug": {
"type": "string",
"description": "The slug of the object the meeting linked record belongs to."
},
"record_id": {
"type": "string",
"format": "uuid",
"description": "The ID of the meeting linked record."
}
}
}
},
"participants": {
"type": "array",
"items": {
"type": "object",
"required": [
"status",
"is_organizer",
"email_address",
"name"
],
"properties": {
"email_address": {
"type": [
"string",
"null"
],
"description": "The normalized email address of the meeting participant."
},
"is_organizer": {
"type": "boolean",
"description": "Whether or not the participant is the organizer of the meeting."
},
"name": {
"type": [
"string",
"null"
],
"description": "The participant's name. This is only set when the name was explicitly provided when the participant was created. It is null for any participant identified by an email address — including workspace members and person records — whose display names are not resolved into this field."
},
"status": {
"type": "string",
"description": "The status of the individual meeting participant.",
"enum": [
"accepted",
"tentative",
"declined",
"pending"
]
}
}
}
},
"start": {
"type": "object"
},
"title": {
"type": "string",
"description": "The title of the meeting."
}
}
}
}
}