action apacta_get_user_custom_field_attributes_user_custom_field_attribute_id { label: "Details of 1 user custom field attribute" provider: apacta method: GET path: "/user_custom_field_attributes/{user_custom_field_attribute_id}" encoding: json input: { type: "object" properties: { user_custom_field_attribute_id: { type: "string" } } required: ["user_custom_field_attribute_id"] additionalProperties: false } output: { type: "object" properties: { data: { 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" } } } success: { type: "boolean" } } } }