Globally unique UUID that is returned with every API call. This value is important to log for debugging purposes; we may ask for this value to help identify a specific API call when helping you debug
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/api_organization_v1_ConnectedAppsResponse",
"title": "api_organization_v1_ConnectedAppsResponse",
"type": "object",
"properties": {
"request_id": {
"type": "string",
"description": "Globally unique UUID that is returned with every API call. This value is important to log for debugging purposes; we may ask for this value to help identify a specific API call when helping you debug an issue."
},
"connected_apps": {
"type": "array",
"items": {
"$ref": "#/components/schemas/api_organization_v1_OrganizationConnectedApp"
}
},
"status_code": {
"type": "integer",
"format": "int32"
}
},
"required": [
"request_id",
"connected_apps",
"status_code"
]
}