action sendgrid_get_api_keys { label: "Retrieve all API Keys belonging to the authenticated user" description: "**This endpoint allows you to retrieve all API Keys that belong to the authenticated user.**\n\nA successful response from this API will include all available API keys' names and IDs.\n\nFor security reasons, there is not a way to retrieve the key itself after it's created. If you lose your API key, you must create a new one. Only the \"Create API keys\" endpoint will return a key to you and only at the time of creation.\n\nAn `api_key_id` can be used to update or delete the key, as well as retrieve the key's details, such as its scopes." provider: sendgrid method: GET path: "/api_keys" encoding: json input: { type: "object" properties: { limit: { type: "integer" } } additionalProperties: false } output: { type: "object" properties: { result: { type: "array" items: { type: "object" properties: { api_key_id: { type: "string" description: "The ID of your API Key. " } name: { type: "string" description: "The name of your API Key." } } } } } } }