action getpostman_single_api { label: "Single API" description: "This call fetches a single API having the specified id.\n\nResponse contains an `api` object with all the details related to the queried API, namely, `id`, `name`, `summary`, `description` etc. \n\n> Requires API Key as `X-Api-Key` request header or `apikey` URL query parameter." provider: getpostman method: GET path: "/apis/{apiId}" encoding: json output: { type: "object" properties: { api: { type: "object" properties: { createdAt: { type: "string" } createdBy: { type: "string" } description: { type: "string" } id: { type: "string" } name: { type: "string" } summary: { type: "string" } updatedAt: { type: "string" } } } } } }