action apacta_get_companies_company_id_price_margins_price_margins_id { label: "Get a list of company price margins" provider: apacta method: GET path: "/companies/{company_id}/price_margins/{price_margins_id}" encoding: json input: { type: "object" properties: { company_id: { type: "string" } price_margins_id: { type: "string" } } required: ["company_id", "price_margins_id"] additionalProperties: false } output: { type: "object" properties: { data: { type: "array" items: { type: "object" properties: { amount_from: { type: "number" format: "double" } amount_to: { type: "number" format: "double" } company_id: { type: "string" format: "uuid" } created: { type: "string" format: "dateTime" } deleted: { type: "string" format: "dateTime" description: "Only present if it's a deleted object" } id: { type: "string" format: "uuid" } modified: { type: "string" format: "dateTime" } percentage_ratio: { type: "number" format: "double" } ratio: { type: "number" format: "float" } type: { 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" } } } }