GET
/
api
/
v1
/
incidents
/
organizations
import os
from syllable_sdk import SyllableSDK


with SyllableSDK(
    api_key_header=os.getenv("SYLLABLESDK_API_KEY_HEADER", ""),
) as ss_client:

    res = ss_client.incidents.incident_get_organizations()

    # Handle response
    print(res)
[
  {
    "id": 123,
    "name": "<string>",
    "display_name": "<string>"
  }
]

Authorizations

Syllable-API-Key
string
header
required

Response

200 - application/json
Successful Response
id
integer
required
name
string
required
display_name
string
required