action apacta_get_contact_types_contact_type_id { label: "Get details about one contact type" provider: apacta method: GET path: "/contact_types/{contact_type_id}" encoding: json input: { type: "object" properties: { contact_type_id: { type: "string" } } required: ["contact_type_id"] additionalProperties: false } output: { type: "object" properties: { data: { 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" } } } success: { type: "boolean" } } } }