action apacta_get_contacts_contact_id_contact_custom_field_values { label: "Get a list of contact custom field values" provider: apacta method: GET path: "/contacts/{contact_id}/contact_custom_field_values" encoding: json input: { type: "object" properties: { contact_id: { type: "string" } } required: ["contact_id"] additionalProperties: false } output: { type: "object" properties: { data: { type: "array" items: { type: "object" properties: { contact_custom_field_attribute_id: { type: "string" format: "uuid" } contact_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" } modified: { type: "string" format: "dateTime" } value: { type: "string" } } } } 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" } } } }