action apacta_get_companies { label: "Get a list of companies" provider: apacta method: GET path: "/companies" encoding: json output: { type: "object" properties: { data: { type: "array" items: { type: "object" properties: { city_id: { type: "string" format: "uuid" } contact_person_id: { type: "string" format: "uuid" } 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" } expired: { type: "string" format: "date-time" } file_id: { type: "string" format: "uuid" } id: { type: "string" format: "uuid" } invoice_email: { type: "string" format: "email" } language_id: { type: "string" format: "uuid" } modified: { type: "string" format: "dateTime" } name: { type: "string" } next_invoice_number: { type: "integer" format: "int32" } next_offer_number: { type: "integer" format: "int32" } next_project_number: { type: "integer" format: "int32" } phone: { type: "string" description: "Format like eg. `28680133` or `046158971404`" } phone_countrycode: { type: "string" description: "Format like eg. `45` or `49`" } receive_form_mails: { type: "string" format: "email" } street_name: { type: "string" } vat_percent: { type: "integer" format: "int32" } website: { 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" } } } }