Skip to main content
GET
/
meeting-outcomes
/
{id}
Get a meeting outcome
curl --request GET \
  --url https://{your-subdomain}.neetocal.com/api/external/v2/meeting-outcomes/{id} \
  --header 'X-Api-Key: <x-api-key>'
{
  "id": "59413def-60eb-47c6-b390-098fcf583b66",
  "name": "Pricing Discussion",
  "color": "yellow",
  "kind": "custom",
  "color_hex": "#EAB308",
  "is_system": false,
  "is_organization_owned": true
}

Documentation Index

Fetch the complete documentation index at: https://apidocs.neetocal.com/llms.txt

Use this file to discover all available pages before exploring further.

Replace {your-subdomain} with your workspace’s subdomain.
Learn how to find your subdomain in Workspace subdomain.

Headers

X-Api-Key
string
required

Use the X-Api-Key header to provide your workspace API key. Refer to Authentication for more information.

Path Parameters

id
string
required

The unique identifier of the meeting outcome.

Example:

"59413def-60eb-47c6-b390-098fcf583b66"

Response

200 - application/json

OK - Request succeeded

id
string

Unique identifier for the meeting outcome.

Example:

"59413def-60eb-47c6-b390-098fcf583b66"

name
string

Name of the meeting outcome.

Example:

"Pricing Discussion"

color
enum<string>

Color assigned to the meeting outcome.

Available options:
blue,
orange,
gray,
red,
yellow,
violet,
pink,
teal,
cyan,
green
Example:

"yellow"

kind
string

Kind of the meeting outcome.

Example:

"custom"

color_hex
string

Hex color code for the meeting outcome.

Example:

"#EAB308"

is_system
boolean

Whether this is a system-defined meeting outcome. System outcomes cannot be modified or deleted.

Example:

false

is_organization_owned
boolean

Whether this outcome belongs to the organization.

Example:

true