action apacta_get_stock_locations_location_id { label: "View single location" provider: apacta method: GET path: "/stock_locations/{location_id}" encoding: json input: { type: "object" properties: { location_id: { type: "string" } } required: ["location_id"] additionalProperties: false } output: { type: "object" properties: { data: { type: "object" properties: { company_id: { type: "string" format: "uuid" } created: { type: "string" format: "dateTime" } created_by_id: { type: "string" format: "uuid" } deleted: { type: "string" format: "dateTime" description: "Only present if it's a deleted object" } id: { type: "string" format: "uuid" } modified: { type: "string" format: "dateTime" } name: { type: "string" } } } success: { type: "boolean" } } } }