action attio_list_objects { label: "List objects" description: "Lists all system-defined and user-defined objects in your workspace.\n\nRequired scopes: `object_configuration:read`." provider: attio method: GET path: "/v2/objects" encoding: json scopes: ["object_configuration:read"] output: { type: "object" description: "Success" required: ["data"] properties: { data: { type: "array" items: { type: "object" required: ["id", "api_slug", "singular_noun", "plural_noun", "created_at"] properties: { api_slug: { type: ["string", "null"] description: "A unique, human-readable slug to access the object through URLs and API calls. Formatted in snake case." } created_at: { type: "string" description: "When the object was created." } id: { type: "object" required: ["workspace_id", "object_id"] properties: { object_id: { type: "string" format: "uuid" description: "A UUID to identify the object." } workspace_id: { type: "string" format: "uuid" description: "A UUID to identify the workspace this object belongs to." } } } plural_noun: { type: ["string", "null"] description: "The plural form of the object's name." } singular_noun: { type: ["string", "null"] description: "The singular form of the object's name." } } } } } } }