action patientview_get_observations_by_codes { label: "Get Observations of Multiple Types For a User" description: "Given a User ID and search parameters, retrieve a page of observations." provider: patientview method: GET path: "/user/{userId}/observations" encoding: json input: { type: "object" properties: { code: { type: "array" items: { type: "string" } } limit: { type: "integer" format: "int64" } offset: { type: "integer" format: "int64" } orderDirection: { type: "string" } userId: { type: "integer" format: "int64" } } required: ["code", "limit", "offset", "orderDirection", "userId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }