action apacta_get_contact_types { label: "Get list of contact types supported in Apacta" provider: apacta method: GET path: "/contact_types" encoding: json input: { type: "object" properties: { identifier: { type: "string" } } additionalProperties: false } output: { type: "object" properties: { data: { type: "array" items: { type: "object" properties: { 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" } description: { type: "string" } id: { type: "string" format: "uuid" } identifier: { type: "string" description: "One of 3 values" enum: ["client", "partner", "supplier"] } modified: { type: "string" format: "dateTime" } name: { 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" } } } }