action apacta_get_project_custom_field_attributes { label: "Get a list of project custom field attributes" provider: apacta method: GET path: "/project_custom_field_attributes" encoding: json output: { type: "object" properties: { data: { type: "array" items: { type: "object" properties: { access_type: { type: "string" } company_id: { type: "string" format: "uuid" } created: { type: "string" format: "dateTime" } created_by_id: { type: "string" format: "uuid" description: "Read-only" } deleted: { type: "string" format: "dateTime" description: "Only present if it's a deleted object" } id: { type: "string" format: "uuid" } is_active: { type: "boolean" } modified: { type: "string" format: "dateTime" } name: { type: "string" } placement: { type: "integer" } } } } pagination: { type: "object" properties: { count: { type: "integer" } current_page: { type: "string" } has_next_page: { type: "boolean" } has_prev_page: { type: "boolean" } limit: { type: "integer" } page_count: { type: "string" } } } success: { type: "boolean" } } } }