action getpostman_update_an_api { label: "Update an API" description: "This call updates an existing API . \n\nRequest body should contain an `api` object which should have the fields to be updated. Only `name`, `summary` and `description` fields can be edited for an API.\n\nResponse contains an `api` object with all the details related to the created 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: PUT path: "/apis/{apiId}" encoding: json input: { type: "object" properties: { api: { type: "object" properties: { description: { type: "string" } name: { type: "string" } } } } } 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" } } } } } }