GET
/
organizations
/
get
curl --request GET \
  --url https://scribe-api.puppilot.co/organizations/get \
  --header 'Authorization: Bearer <token>' \
  --header 'X-API-Version: <x-api-version>'
{
  "public_id": "<string>",
  "name": "Organization Name",
  "description": "Organization Description",
  "has_slack_bot_token": true,
  "slack_channel": null,
  "email_notification": null
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

X-API-Version
string
required

API versioning is required. Include the header X-API-Version with current version value in all requests.

Example:

"v1"

Response

200 - application/json
Organization details retrieved successfully.
public_id
string
name
string
description
string
has_slack_bot_token
boolean
slack_channel
string
email_notification
string