action apacta_get_contacts_contact_id { label: "Details of 1 contact" provider: apacta method: GET path: "/contacts/{contact_id}" encoding: json input: { type: "object" properties: { contact_id: { type: "string" } } required: ["contact_id"] additionalProperties: false } output: { type: "object" properties: { data: { type: "object" properties: { address: { type: "string" description: "Street address" } centiga_id: { type: "string" } city_id: { type: "string" format: "uuid" } company_id: { type: "string" format: "uuid" description: "Only filled out if this represents another company within Apacta (used for partners)" } country_id: { type: "string" format: "uuid" } created: { type: "string" format: "dateTime" } created_by_id: { type: "string" format: "uuid" description: "Read-only" } cvr: { type: "string" } deleted: { type: "string" format: "dateTime" description: "Only present if it's a deleted object" } description: { type: "string" } email: { type: "string" } erp_id: { type: "string" description: "If company has integration to an ERP system, and the contacts are synchronized, this will be the ERP-systems ID of this contact" } id: { type: "string" format: "uuid" } modified: { type: "string" format: "dateTime" } name: { type: "string" } phone: { type: "string" description: "Format like eg. `28680133` or `046158971404`" } pogo_id: { type: "string" } tripletex_id: { type: "string" } website: { type: "string" } } } success: { type: "boolean" } } } }