action getpostman_api_key_owner { label: "API Key Owner" description: "the `/me` Postman API endpoint lets you access information about the authenticated user. You can retrieve the authenticated user's username, full name, e-mail address, and any other available information.\n\n> Requires API Key as `X-Api-Key` request header or `apikey` URL query parameter." provider: getpostman method: GET path: "/me" encoding: json output: { type: "object" properties: { operations: { type: "array" items: { type: "object" properties: { limit: { type: "number" } name: { type: "string" } overage: { type: "number" } usage: { type: "number" } } } } user: { type: "object" properties: { avatar: { type: "string" } email: { type: "string" } fullName: { type: "string" } id: { type: "string" } isPublic: { type: "boolean" } username: { type: "string" } } } } } }