action getpostman_delete_an_api { label: "Delete an API" description: "This call deletes an existing API having the specified id. \n\nResponse contains an `api` object with `id` of the API which was deleted.\n\n> Requires API Key as `X-Api-Key` request header or `apikey` URL query parameter." provider: getpostman method: DELETE path: "/apis/{apiId}" encoding: json output: { type: "object" properties: { api: { type: "object" properties: { id: { type: "string" } } } } } }