action sendgrid_get_api_keys_api_key_id { label: "Retrieve an existing API Key" description: "**This endpoint allows you to retrieve a single API key using an `api_key_id`.**\n\nThe endpoint will return a key's name, ID, and scopes. If the API Key ID does not, exist a `404` status will be returned.\n\nSee the [API Key Permissions List](https://sendgrid.api-docs.io/v3.0/how-to-use-the-sendgrid-v3-api/api-authorization) for all available scopes. An API key's scopes can be updated after creation using the \"Update API keys\" endpoint." provider: sendgrid method: GET path: "/api_keys/{api_key_id}" encoding: json output: { type: "object" properties: { result: { type: "array" items: { type: "object" } } } } }