action openchannel_post_permission_apps_app_id { label: "Adds permission to allow the app to access this user's data" provider: openchannel method: POST path: "/permission/apps/{appId}" encoding: json input: { type: "object" properties: { appId: { type: "string" } date: { type: "integer" format: "int64" } ip: { type: "string" } userId: { type: "string" } } required: ["appId", "userId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }