action sinao_app_apikeys_create { label: "Create new API key" provider: sinao method: POST path: "/apps/{appId}/apikeys" encoding: json input: { type: "object" properties: { api_partner_id: { type: "integer" } name: { type: "string" } } required: ["name"] additionalProperties: false } output: { type: "object" properties: { code: { type: "integer" } message: { type: "string" } type: { type: "string" } } } }