Basecamp · Schema
Recording
A generic recording object representing any Basecamp content resource such as a message, to-do, document, comment, or upload.
CollaborationProject ManagementRESTSaaSTeam Communication
Properties
| Name | Type | Description |
|---|---|---|
| id | integer | Recording ID |
| status | string | Recording status |
| visible_to_clients | boolean | Whether this recording is visible to client users |
| created_at | string | Timestamp when the recording was created |
| updated_at | string | Timestamp when the recording was last updated |
| title | string | Title or summary of the recording |
| inherits_status | boolean | Whether this recording inherits its status from a parent |
| type | string | Recording type (e.g., Message, Todo, Document) |
| url | string | API URL for this recording |
| app_url | string | Web URL for this recording |
| bucket | object | |
| creator | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://api-evangelist.github.io/basecamp/json-schema/recording-schema.json",
"title": "Recording",
"type": "object",
"description": "A generic recording object representing any Basecamp content resource such as a message, to-do, document, comment, or upload.",
"properties": {
"id": {
"type": "integer",
"description": "Recording ID"
},
"status": {
"type": "string",
"description": "Recording status",
"enum": [
"active",
"archived",
"trashed"
]
},
"visible_to_clients": {
"type": "boolean",
"description": "Whether this recording is visible to client users"
},
"created_at": {
"type": "string",
"format": "date-time",
"description": "Timestamp when the recording was created"
},
"updated_at": {
"type": "string",
"format": "date-time",
"description": "Timestamp when the recording was last updated"
},
"title": {
"type": "string",
"description": "Title or summary of the recording"
},
"inherits_status": {
"type": "boolean",
"description": "Whether this recording inherits its status from a parent"
},
"type": {
"type": "string",
"description": "Recording type (e.g., Message, Todo, Document)"
},
"url": {
"type": "string",
"format": "uri",
"description": "API URL for this recording"
},
"app_url": {
"type": "string",
"format": "uri",
"description": "Web URL for this recording"
},
"bucket": {
"$ref": "#/components/schemas/BucketRef"
},
"creator": {
"$ref": "#/components/schemas/PersonRef"
}
}
}