action getpostman_create_api { label: "Create API" description: "This call creates a new API with a default API Version. \n\nRequest body should contain an `api` object which should atleast have a property `name`.\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: POST path: "/apis" encoding: json input: { type: "object" properties: { api: { type: "object" properties: { description: { type: "string" } name: { type: "string" } summary: { type: "string" } } } workspace: { type: "string" } } additionalProperties: false } 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" } } } } } }