Lists all system-defined and user-defined objects in your workspace.
Required scopes: object_configuration:read.
643 matches
49 actions
Attio
49 actions
CRM/Attio
Lists all system-defined and user-defined objects in your workspace.
Required scopes: object_configuration:read.
{
"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."
}
}
}
}
}
}